I need to convert an array of objects into an object of objects properties from the array.
Here is an example of an array of objects
array of objects
co
How about
let obj = {} for(let object of array) { Object.assign(obj, object) } console.log(obj)