Answers for "how to loop throuhg objects within object"

53

javascript loop through objec

var person={
 	first_name:"johnny",
  	last_name: "johnson",
	phone:"703-3424-1111"
};
for (var property in person) {
  	console.log(property,":",person[property]);
}
Posted by: Guest on July-22-2019
0

javascript looping through object

for (const [fruit, count] of entries) {
  console.log(`There are ${count} ${fruit}s`)
}

// Result
// There are 28 apples
// There are 17 oranges
// There are 54 pears
Posted by: Guest on May-19-2020

Code answers related to "how to loop throuhg objects within object"

Code answers related to "Javascript"

Browse Popular Code Answers by Language