Answers for "javascript get index of object in array and return the value"

9

javascript indexOf object value in array

// 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);
Posted by: Guest on September-23-2020
0

get index of element in array javascript

var scores = [10, 20, 30, 10, 40, 20];
console.log(scores.indexOf(30)); // 2
console.log(scores.indexOf(50)); // -1
Posted by: Guest on November-18-2020

Code answers related to "javascript get index of object in array and return the value"

Code answers related to "Javascript"

Browse Popular Code Answers by Language