Javascript Object Values As Array 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: js get all values of object


Object.values(object1)

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