conver object in to array code example
Example 1: javascript object to array
//Supposing fooObj to be an object
fooArray = Object.entries(fooObj);
fooArray.forEach(([key, value]) => {
console.log(key); // 'one'
console.log(value); // 1
})
Example 2: js convert obj to array
const array = [
['key', 1],
['two', 2],
];
Object.fromEntries(array);
// { one: 1, two: 2 }