Convert Object To Array Javascript Es6 Code Example


Example 1: javascript object to array


//ES6 Object to Array

const numbers = {
one: 1,
two: 2,
};

console.log(Object.values(numbers));
// [ 1, 2 ]

console.log(Object.entries(numbers));
// [ ['one', 1], ['two', 2] ]

Example 2: 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 3: convert object to array javascript


var object = {'Apple':1,'Banana':8,'Pineapple':null};
//convert object keys to array
var k = Object.keys(object);
//convert object values to array
var v = Object.values(object);

Example 4: object to array javascript


Object.values(obj)

Example 5: 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 6: how to convert object to array in javascript


const propertyValues = Object.values(person);

console.log(propertyValues);

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android How Can I Convert A String To A Editable