Answers for "convert obj in to array"

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
0

js convert obj to array

const array = [
  ['key', 1],
  ['two', 2],
];

Object.fromEntries(array);
// { one: 1, two: 2 }
Posted by: Guest on August-19-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language