Dapatkan Kunci Kamus JS
// Get keys of a dictionary
let dict = { a:1 , b:2 , c:3 }
console.log( Object.keys(dict) ) // expected output : ['a', 'b', 'c']
Maxime Laplace
// Get keys of a dictionary
let dict = { a:1 , b:2 , c:3 }
console.log( Object.keys(dict) ) // expected output : ['a', 'b', 'c']
Object.keys(object).find(key => object[key] === value)
const person = {
name: 'Bob',
age: 47
}
Object.keys(person).forEach((key) => {
console.log(person[key]); // 'Bob', 47
});
Object.values(obj)
Object.values(object1)
var obj = {
a: "A",
b: "B",
c: "C"
}
console.log(obj.a); // return string : A
var name = "a";
console.log(obj[name]);