Answers for "get array keys 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
8

js get object keys

myObject = {
	"key": "value"
}

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language