how to find key in object javascript code example

Example 1: how to check if object has key javascript

myObj.hasOwnProperty('key') // it checks object for particular key and not on prototype

Example 2: 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"));

Example 3: js find key by value in object

Object.keys(object).find(key => object[key] === value)

Example 4: typescript check if object has key

if ('key' in myObj)