基础2

来源:互联网 发布:昆虫胰岛素淘宝网 编辑:程序博客网 时间:2024/06/09 17:21

2、javascript的typeof返回哪些数据类型?

object number function boolean underfind string

typeof null;//object

typeof isNaN;//

typeof isNaN(123)

typeof [];//object 

Array.isARRAY(); es5

toString.call([]);//”[object Array]”

var arr=[];

arr.constructor;//Array