Answers for "how to convert object of arrays 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
2

convert object to array

const rooms = {r1: "Room 1", r2: "Room 2", r3: "Room 3"};

const arrayResult = Object.keys(rooms).map(room => {
    return {id: room, name: rooms[room]} 
});
Posted by: Guest on July-18-2021

Code answers related to "how to convert object of arrays into array in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language