Answers for "javascript find index in array based on value"

2

index of value in array

// for dictionary case use findIndex 
var imageList = [
   {value: 100},
   {value: 200},
   {value: 300},
   {value: 400},
   {value: 500}
];
var index = imageList.findIndex(img => img.value === 200);
Posted by: Guest on June-27-2020

Code answers related to "javascript find index in array based on value"

Code answers related to "Javascript"

Browse Popular Code Answers by Language