from array to object code example
Example 1: js array into object
const names = ['Alex', 'Bob', 'Johny', 'Atta'];
// convert array to th object
const obj = Object.assign({}, names);
// print object
console.log(obj);
// {0: "Alex", 1: "Bob", 2: "Johny", 3: "Atta"}
Example 2: javascript convert array to object
function arrayToObject(arr) {
var obj = {};
for (var i = 0; i < arr.length; ++i){
obj[i] = arr[i];
}
return obj;
}
var colors=["red","blue","green"];
var colorsObj=arrayToObject(colors);//{0: "red", 1: "blue", 2: "green"}