Answers for "get all keys from dictionary js"

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
0

get all keys from pbject javascirpt

const object1 = {
  a: 'somestring',
  b: 42,
  c: false
};

console.log(Object.keys(object1)); // expected output: Array ["a", "b", "c"]

// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/keys
Posted by: Guest on October-01-2020

Code answers related to "get all keys from dictionary js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language