Answers for "javascript get key by value in dictionary"

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
0

js dictionary to extract the same key bvalues

const car = [{id: "1", brand: "Opel"}, {id: "2", brand: "Haima"},{id: "3", brand: "Toyota"}];

const brands = car.map(({ brand }) => brand);
Posted by: Guest on November-06-2020

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language