object.keys on an array of objects js code example
Example 1: 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 2: javascript create object whose with keys in an array
Object.fromEntries = arr => Object.assign({}, ...Array.from(arr, ([k, v]) => ({[k]: v}) ));