Answers for "convert value of object to array js"

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 javascript

const numbers = {
  one: 1,
};

const objectArray = Object.entries(numbers);

objectArray.forEach(([key, value]) => {
  console.log(key); // 'one'
  console.log(value); // 1
});
Posted by: Guest on October-26-2020

Code answers related to "convert value of object to array js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language