JS中的数据类型

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS中的数据类型相关的知识,希望对你有一定的参考价值。

1.JS中的数据类型:string  number  boolean null undefined object

2.JS对象的类型:本地对象  内置对象  宿主对象

3.判断对象的类型为数组的方法:

方法一:console.log( Array.isArray(arr ) ); // true

方法二:console.log(arr instanceof Array);// true

方法三:console.log(Array.prorotype.isPrototypeOf(arr));// true

方法四:console.log(Object.prototype.toString.call(arr));// [object Array]


以上是关于JS中的数据类型的主要内容,如果未能解决你的问题,请参考以下文章

JS中的数据类型

js中的数据类型和判断数据类型

JS中的数据类型

js中的数据类型

js中的数据类型,以及如何检测数据类型

js中的简单数据类型和复杂数据类型