型別
typeof 是用於在 javascript 中獲取 type 的官方函式,但在某些情況下它可能會產生一些意想不到的結果……
1.字串
typeof "String" 或
typeof Date(2011,01,01)
字串
2.數字
typeof 42
數
布林
typeof true(有效值 true 和 false)
布林
4.物件
typeof {} 或
typeof [] 或
typeof null 或
typeof /aaa/或
typeof Error()
賓語
5.功能
typeof function(){}
功能
6.未定義
var var1; typeof var1
不確定