turn object to array method code example
Example 1: javascript object to array
fooArray = Object.entries(fooObj);
fooArray.forEach(([key, value]) => {
console.log(key);
console.log(value);
})
Example 2: convert object to array javascript
var object = {'Apple':1,'Banana':8,'Pineapple':null};
var k = Object.keys(object);
var v = Object.values(object);
Example 3: how to convert object to array in javascript
const propertyValues = Object.values(person);
console.log(propertyValues);
Example 4: js convert obj to array
const array = [
['key', 1],
['two', 2],
];
Object.fromEntries(array);