Answers for "how to loop through an array of objects in javascript and return all the element"

53

javascript loop through object array

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 loop through array of objects

yourArray.forEach(function (arrayItem) {
    var x = arrayItem.prop1 + 2;
    console.log(x);
});
Posted by: Guest on February-28-2020

Code answers related to "how to loop through an array of objects in javascript and return all the element"

Code answers related to "Javascript"

Browse Popular Code Answers by Language