Answers for "js loop through object and add to new object"

14

javascript looping through object

for (var property in object) {
  if (object.hasOwnProperty(property)) {
    // Do things here
  }
}
Posted by: Guest on September-09-2019
0

javascript looping through object

const fruits = {
  apple: 28,
  orange: 17,
  pear: 54,
}

const values = Object.values(fruits)
console.log(values) // [28, 17, 54]
Posted by: Guest on May-19-2020

Code answers related to "js loop through object and add to new object"

Code answers related to "Javascript"

Browse Popular Code Answers by Language