前端开发您现在的位置是:首页 > 博客日志 > 前端开发

js判断数组中是否存在某个值的几种方法

<a href='mailto:'>微wx笑</a>的头像微wx笑 2023-03-22前端开发 0 0关键字: js  数组  

array.indexOf判断数组中是否存在某个值,如果存在返回数组元素的下标,否则返回-1 let arr = [&#39;something&#39;, &#39;anything&#39;, &#39;nothing&#39;, &#39;anything&#

array.indexOfBPl无知

判断数组中是否存在某个值,如果存在返回数组元素的下标,否则返回-1BPl无知

 let arr = ['something', 'anything', 'nothing', 'anything']; 
 let index = arr.indexOf('nothing');
 # 结果:2


BPl无知

array.includes(searchElement[, fromIndex])BPl无知

判断一个数组是否包含一个指定的值,如果存在返回 true,否则返回false。BPl无知

参数:searchElement
需要查找的元素值。BPl无知

参数:thisArg(可选)
从该索引处开始查找 searchElement。如果为负值,则按升序从 array.length + fromIndex 的索引开始搜索。默认为 0。BPl无知

let numbers = [12, 5, 8, 130, 44];
let result = numbers.includes(8);
# 结果: true
result = numbers.includes(118);
# 结果: false


BPl无知

array.find(callback[, thisArg])BPl无知

返回数组中满足条件的第一个元素的值,如果没有,返回undefinedBPl无知

参数:callback
element 当前遍历到的元素。
index 当前遍历到的索引。
array 数组本身。BPl无知

参数:thisArg(可选)
指定 callback 的 this 参数。BPl无知

// ---------- 元素是普通字面值 ----------
let numbers = [12, 5, 8, 130, 44];
let result = numbers.find(item => {
    return item > 8;
});
# 结果: 12
// ---------- 元素是对象 ----------
let items = [
    {id: 1, name: 'something'},
    {id: 2, name: 'anything'},
    {id: 3, name: 'nothing'},
    {id: 4, name: 'anything'}
];
let item = items.find(item => {
    return item.id == 3;
});
# 结果: Object { id: 3, name: "nothing" }

array.findIndex(callback[, thisArg])BPl无知

返回数组中满足条件的第一个元素的索引(下标), 如果没有找到,返回-1BPl无知

参数:callback
element 当前遍历到的元素。
index 当前遍历到的索引。
array 数组本身。BPl无知

参数:thisArg(可选)
指定 callback 的 this 参数。BPl无知

// ---------- 元素是普通字面值 ----------
let numbers = [12, 5, 8, 130, 44];
let result = numbers.findIndex(item => {
    return item > 8;
});
# 结果: 0
// ---------- 元素是对象 ----------
let items = [
    {id: 1, name: 'something'},
    {id: 2, name: 'anything'},
    {id: 3, name: 'nothing'},
    {id: 4, name: 'anything'}
];
let index = items.findIndex(item => {
    return item.id == 3;
});
# 结果: 2

$.inArray(searchElement, arr)BPl无知

使用jquery的inArray方法,该方法返回元素在数组中的下标,如果不存在与数组中,那么返回-1;BPl无知

参数:searchElement
需要查找的元素值。BPl无知

参数:arr
需要查找的数组BPl无知

 var arr=['aaa','bbb','ccc','ddd','eee'];
 var a= $.inArray('bbb',arr);
 console.log(a);
 #结果: 1


BPl无知

本文为转载文章,版权归原作者所有,不代表本站立场和观点。

很赞哦! () 有话说 ()