型別

typeof 是用於在 javascript 中獲取 type官方函式,但在某些情況下它可能會產生一些意想不到的結果……

1.字串

typeof "String"
typeof Date(2011,01,01)

字串

2.數字

typeof 42

布林

typeof true(有效值 truefalse

布林

4.物件

typeof {}
typeof []
typeof null
typeof /aaa/
typeof Error()

賓語

5.功能

typeof function(){}

功能

6.未定義

var var1; typeof var1

不確定