linye's Blog

全端工程師心得分享

0%

[JaveScript]JS全端大冒險No.2

簡單介紹JS資料型別(data type)

JS在資料型別上有以下幾種特點

  1. 弱型別(loosely typed):JS宣告變數時不需要特別指定型別 類似的語言有PHP Python等等

JS一共有7種資料型別

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 1. 布林
const booleanData = true;

// 2. Null空集合
const nullData = null;

// 3. undefined未定義
const undefinedData = undefined;

// 4. 數字
const numberData = 1;

// 5. 大數字BigInt
const bigintData = 9007199254740992n;

// 6. 字串String
const stringData = 'str';

// 7. Symbol
const symbolData = Symbol("sym");