JS資料型別

2021-09-24 07:33:20 字數 835 閱讀 2547

js歷史

資料型別

七種資料型別(請背誦):number(數值)string(字串)boolean(布林值)symbol(符號)object(物件)undefinednull

注意:沒有arry型別也沒有function型別。

number

string

boolean

symbol

symbol生成乙個全域性唯一的值

undefinednull

object

typeof運算子

***的型別

string

number

boolean

symbol

undefined

null

object

function

typeof ***

'string'

'number'

'boolean'

'symbol'

'undefined'

'object''object'

'function'

注意:function並不是乙個型別

js資料型別

一.原始資料型別 1.typeof 運算子。var a alert typeof a 輸出結果為 undefined 2.undefined 未定義 型別 當變數未定義時,該變數值被預設為undefined 如 var a alert typeof a 輸出結果為 undefined 注意值unde...

js資料型別

js 基本資料型別 undefined null boolean number string js 操作符 typeof檢測給定變數的資料型別。返回值表示的型別 undefined 值未定義。boolean 值為布林型別。string 值為字串。number 值為數字。object 值為物件或nul...

js資料型別

var num 1,boo true,aa null,bb,str mary arr 1,2,4,8 obj arrnew new array 1,2,3 strnew new string 1,2,3 用 typeof 檢測變數的型別 console.log number typeof num n...