JS typeof 的值

版权声明:本文为博主前端基础文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
typeof undefined // undefined

typeof 'abc' // string

typeof 123 // number

typeof NaN // number

typeof true // boolean

typeof {} // object

typeof [] // object

typeof null // object

typeof console // object

typeof Function // function