Answers for "get element by key in dictionary in javascript"

2

get keys of dictionary js

// Get keys of a dictionary
let dict = { a:1 , b:2 , c:3 }

console.log( Object.keys(dict) ) // expected output : ['a', 'b', 'c']
Posted by: Guest on July-20-2020
4

getkey by value js

function getKeyByValue(object, value) {
  return Object.keys(object).find(key => object[key] === value);
}
Posted by: Guest on May-12-2021

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language