JS Null 空 判断

Posted whitesky_root

tags:

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

 

JS判断对象是否为空

https://www.cnblogs.com/mountain-mist/articles/1600995.html
http://www.cftea.com/c/2007/04/YK4PY29JW82CZOVY.asp

 

 

JS如何判断一个数组是否为空、是否含有某个值? 下面的方法不能判断对象是否为 0、null、undefined

1.js判断数组是否为空?

let arr = [];
if (arr.length == 0){
   console.log("数组为空")
}else {
   console.log("数组不为空")
}

2. js判断数组是否含有某个值?
方法一:  arr.indexOf()
if (arr.indexOf(2) != -1){
   console.log("数组含有2")
}else {
   console.log("数组不含2")
}

方法二:  for循环结合if判断
for (let i = 0;i < arr.length;i++){
   if (arr[i] === 2){
      console.log("数组含有2")
  }
}

方法三: arr.find(callback)   
arr.find(value => {
   if (value === 2){
      console.log("数组含有2")
  }
})

方法四: arr.includes()   数组中含有某值返回true,没有返回false。ES7新方法。

let arr = [1,2,3,4];
if(arr.includes(2)){
  console.log("数组中有2");
}else{
  console.log("数组中无2");
}

 

以上是关于JS Null 空 判断的主要内容,如果未能解决你的问题,请参考以下文章

JS 中判断空值 undefined 和 null

js 中 0 和 null "" 的逻辑关系

js判断空值

怎么判断数组是null还是空??数组空是指数组中没有元素??数组null是数组中元素都是0??

JS判断数据类型以及数据过滤空值方法

js 判断是不是为空