📅  最后修改于: 2022-03-11 15:01:39.252000             🧑  作者: Mango
// 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);