The goal of the function is to convert an object into an array, where each element in the array represents a key:value pair 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: object to array javascript
Object.values(obj)