Answers for "object into array in javascript"

4

how to convert object to array in javascript

// how to convert object to array in javascript
// Object.entries()
const credits = { producer: 'John', director: 'Jane', assistant: 'Peter' };
const arr = Object.entries(credits);
console.log(arr);

/** Output:
[ [ 'producer', 'John' ],
  [ 'director', 'Jane' ],
  [ 'assistant', 'Peter' ]
]
**/
// convert to values array
// Object.values()
console.log(Object.values(credits));
// [ 'John', 'Jane', 'Peter' ]
Posted by: Guest on January-20-2022
8

javascript object to array

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"}
Posted by: Guest on August-02-2019

Code answers related to "object into array in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language