Answers for "find key in array of object js"

15

how to find the key of an value in an object

function getKeyByValue(object, value) {
  return Object.keys(object).find(key => object[key] === value);
}


const map = {"first" : "1", "second" : "2"};
console.log(getKeyByValue(map,"2"));
Posted by: Guest on August-07-2020
11

js find object that has key in array

myArray.find(x => x.id === '45').foo;
Posted by: Guest on May-25-2020

Code answers related to "find key in array of object js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language