判断数据类型可以使用 typeof 但是typeof 判断数组和函数时返回的都是Object 不能具体判断,这时使用 instanceof 可以判断对象是否是另一个函数创造的 ;
用法:
typeof([]) // Object
typeof(12) // Number
[] instanceof Array // true 【】是否是数组类型 返回 true 是的
也可以使用数组的静态方法 isArray :
Array.isArray([]) // 返回 true
标签:判断,哪些,Object,数据类型,js,typeof,数组,true From: https://www.cnblogs.com/zhulongxu/p/17067216.html