javascript convert object array to array code example
Example 1: converting object to array in js
const numbers = {
one: 1,
};
const objectArray = Object.entries(numbers);
objectArray.forEach(([key, value]) => {
console.log(key); // 'one'
console.log(value); // 1
});
Example 2: how to convert object to array in javascript
const propertyValues = Object.values(person);
console.log(propertyValues);