📜  javascript indexOf 数组中的对象值 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:39.252000             🧑  作者: Mango

代码示例1
// Get index of object with specific value in array
const needle = 3; // needle
const haystack = [{ id: 1 }, { id: 2 }, { id: 3 }]; // haystack
const index = haystack.findIndex(item => item.id === needle);