js get array of object keys code example

Example 1: object keys javascript

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

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

Example 2: object.keys javascript

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

console.log(Object.keys(object1));

Example 3: javascript create array of object keys

// If this helps, don't forget to upvote so others can see

var apple = {
  'color': 'red',
  'editable': true,
  'weight': '100 grams',
};

var appleKeys = Object.keys(apple);
console.log(appleKeys);
// returns an array ['color', 'editable', 'weight']

Example 4: how to get keys in an object javascript

Object.keys(whateverYourObjectIsCalled)