JS 判断一个变量是不是数组

//法一
const isArray1=function(value){
    return Object.prototype.toString.apply(value)==='[object Array]'
}
//法二
const isArray2=function(value){
    return Array.isArray(value)
}
posted @ 2020-10-07 21:24  mingL  阅读(124)  评论(0编辑  收藏  举报