Answers for "whcih property in array can be used for loop the property"

6

js loop through object

const obj = { a: 1, b: 2 };

Object.keys(obj).forEach(key => {
	console.log("key: ", key);
  	console.log("Value: ", obj[key]);
} );
Posted by: Guest on November-04-2020
10

js loop over object

const object = {a: 1, b: 2, c: 3};

for (const property in object) {
  console.log(`${property}: ${object[property]}`);
}
Posted by: Guest on April-10-2020

Code answers related to "whcih property in array can be used for loop the property"

Code answers related to "Javascript"

Browse Popular Code Answers by Language