Strings
typeof "String" or
typeof Date (2011, 01, 01)
"string"
Numbers
typeof 42
"number"
Bool
typeof true ( giá trị hợp lệ đúng và sai)
"boolean"
Object
typeof {} or
typeof [] or
typeof null or
typeof /aaa/or
typeof Error()
"object"
Function
typeof function(){}
"function"
Undefined
var var1 ; typeof var1
"undefined"
Tham khảo GoalKicker.com
Dịch: Devmaster Academy