how to get the key from a dictionary js code example
Example: 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']
// Get keys of a dictionary
let dict = { a:1 , b:2 , c:3 }
console.log( Object.keys(dict) ) // expected output : ['a', 'b', 'c']