javascript array of keys to object code example
Example 1: js array to object with keys
const subLocationTypes = (location.subLocationTypes || []).reduce((add, cur) => {
add[cur.key] = cur.value;
return add;
}, {});
Example 2: 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']