js判断变量是不是数组
Posted yang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js判断变量是不是数组相关的知识,希望对你有一定的参考价值。
var arr= [1,2,3,4]; function isArray(o) { return Object.prototype.toString.call(o)== ‘[object Array]‘; } console.log(isArray(arr));
//Object.prototype.toString.call([]) ‘[object Array]‘
//Object.prototype.toString.call({}) ‘[object Object]‘
//Object.prototype.toString.call(1) ‘[object Number]‘
//Object.prototype.toString.call(‘1‘) ‘[object String]‘
//Object.prototype.toString.call(null) ‘[object Object]‘
//Object.prototype.toString.call(undefined) ‘[object Undefined]‘
以上是关于js判断变量是不是数组的主要内容,如果未能解决你的问题,请参考以下文章