Answers for "js get the key of an object"

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

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

js get object keys

myObject = {
	"key": "value"
}

Object.keys(myObject); // get array of keys
Posted by: Guest on March-29-2020
0

get keys of object js

var buttons = {
  foo: 'bar',
  fiz: 'buz'
};

for ( var property in buttons ) {
  console.log( property ); // Outputs: foo, fiz or fiz, foo
}
Posted by: Guest on June-09-2020
1

how to get keys in an object javascript

Object.keys(whateverYourObjectIsCalled)
Posted by: Guest on January-06-2021

Code answers related to "js get the key of an object"

Code answers related to "Javascript"

Browse Popular Code Answers by Language