Answers for "get dictionary key by value javascript"

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
2

javascript get dictionary values

const object1 = {
  a: 'somestring',
  b: 42,
  c: false
};

console.log(Object.values(object1));
// expected output: Array ["somestring", 42, false]
Posted by: Guest on October-28-2020

Code answers related to "get dictionary key by value javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language