数据类型
1.undefined
2.null
3.number
4.boolean
5.string
6.object
判断数据类型
1.typeof
typeof 95 // 'number'
typeof 'aaa' // 'string'
#typeof可以判断function
2.instanceof
alert(c instanceof Array) // true
#需要后面跟的是object,不然会报错
3.constructor
c.constructor === Array // true
4.prototype
alert(Object.prototype.toString.call(a) === ‘[object String]’) -------> true;
网友评论