Answers for "how to get the object that the key value of it equal something in js"

7

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

Code answers related to "how to get the object that the key value of it equal something in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language