js检测数据类型
1.typeof()
数组,对象,日期,null是检测出来的都是object,但是基本数据类型可以用typeof()
undefined和没有定义的变量检测出来是 undefined
typeof ("wwerwe") // 返回 "string"
typeof 3.33 // 返回 "number"
typeof NaN // 返回 "number"
typeof false // 返回 "boolean"
typeof [1,2,3,4] // 返回 "object"
typeof {name:'Bill', age:62} // 返回 "object"
typeof new Date() // 返回 "object"
typeof function () {} // 返回 "function"
typeof myCar
js检测数据类型最先出现在Python成神之路。
共有 0 条评论