Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

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
})
Source by www.samanthaming.com #
 
PREVIOUS NEXT
Tagged: #javascript #object #array
ADD COMMENT
Topic
Name
7+6 =