Answers for "get value of key of object in javascript"

15

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

How to Get Object Keys and Values in JavaScript

const myObj = {
  firstName: 'John',
  lastName: 'Duo',
  address: '1270.0.0.1'
}
const keys = Object.keys(myObj); // firstName, lastName, address
const values = Object.values(myObj); // John, Duo, 127.0.0.1
Posted by: Guest on February-11-2022

Code answers related to "get value of key of object in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language