convert obj to array with its value js code example
Example 1: object to array javascript
Object.values(obj)
Example 2: 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 3: how can i convert object to an array javascript
const entries = Object.entries(person);
console.log(entries);
Code language: JavaScript (javascript)