📅  最后修改于: 2022-03-11 15:02:42.948000             🧑  作者: Mango
// Get index of object with specific value in array
const needle = 3;
const haystack = [{ id: 1 }, { id: 2 }, { id: 3 }];
const index = haystack.findIndex(item => item.id === needle);