get object keys in javascript code example
Example 1: 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']
Example 2: object keys javascript
const object1 = {
a: 'somestring',
b: 42,
c: false
};
console.log(Object.keys(object1));
// expected output: Array ["a", "b", "c"]
Example 3: get all keys of object in javascript
myObject = {
"key": "value",
"key2":"value2"
}
Object.keys(myObject);
//console.log(Object.keys(myObject)) = ["key", "key2"]