js数组查找元素

js查找对象在数组中的索引,findIndex方法

let objectsArray = [{ id: 1, name: 'Alice' }, { id: 2, name: 'Bob' }, { id: 3, name: 'Charlie' }];
 
// 假设我们要找到id为2的对象的索引
let targetId = 2;
let index = objectsArray.findIndex(obj => obj.id === targetId);
 
console.log(index); // 输出: 1

js查找数组是否包含某个值 some方法

let arr = [1,2,3,4,5,6]
let val = 2
let isVal = arr.some(item => item === val);
console.log(isVal)//true

js查找数组中某个对象,并返回该对象 find方法

let items = [
    {id: 1, name: 'something'},
    {id: 2, name: 'anything'},
    {id: 3, name: 'nothing'},
];
let item = items.find(item => {
    return item.id == 3;
});
console.log(item) //Object { id: 3, name: "nothing" }

字符串中是否包含数组中的元素

function containsAny(str, arr) {
    return arr.some(element => str.includes(element));
}
 
// 示例使用
const str = "Hello, world!";
const arr = ["Hello", "Hi", "How are you?"];
 
const result = containsAny(str, arr);
console.log(result); // 输出: true

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值