F2:利用hasOwnProperty

const obj = {a: 1, b: 2, c: 3};

if (obj.hasOwnProperty(‘a’)) {

console.log(‘对象中存在属性 a’);

} else {

console.log(‘对象中不存在属性 a’);

}

F2:利用indexOf

不存在返回-1,存在返回第一次出现的索引

// js检查数组中是否包含某个元素
var arr = [1, 2, 5, 7, 8, 3]
if(arr.indexOf(7)==-1){
console.log(“不存在”)
}else{
console.log(“存在,索引是:”,arr.indexOf(7))
}

存在,索引是:3

F3:find

参数是一个回调函数,所有数组元素依次遍历该回调函数,直到找出第一个返回值为true的元素,然后返回该元素,否则返回undefined。

var arr = [1, 2, 5, 7, 8, 3, 5]
arr.find(function(value,index,arr){
if(value==5){
console.log(“存在”,index)
}
})
查找5,find会找出所有存在的5以及索引

存在 3
存在 6

F4:some

与find相似,只是find是返回满足条件的元素,some返回的是一个Boolean值,从语义化来说,是否包含返回布尔值更贴切

var arr = [1, 2, 5, 7, 8, 3, 5]
let result = arr.some(ele => ele === 5) //true
if (result) {
//do something…
};
console.log(result)

true

F5:includes (ES6)

var arr = [1, 2, 5, 7, 8, 3, NAN, 5]
let flag = arr.includes(77)
let flag1 = arr.includes(NaN)
console.log(flag,flag1)

false, true

 

 

作者 admin

百度广告效果展示