Answers for "js find value of object by key"

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
1

javascript object get value by key

var obj = {
   a: "A",
   b: "B",
   c: "C"
}

console.log(obj.a);  // return string : A

var name = "a";
console.log(obj[name]);
Posted by: Guest on November-09-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language