Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

javascript get index of object in array

// 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);
 
PREVIOUS NEXT
Tagged: #javascript #index #object #array
ADD COMMENT
Topic
Name
8+5 =