javascript-------typeof

primitive type:undefined, number, string, boolean, null

typeof:(undefined)undefined, (12)number, ('1234')string, (true)boolean, (null)object

typeof:

Number:function

String:function

Boolean:function

Object:function

Array:function

reference type:

null instanceof Object

你可能感兴趣的:(JavaScript)