Answers for "object loop iteration"

85

javascript loop through object

Object.entries(obj).forEach(
    ([key, value]) => console.log(key, value)
);
Posted by: Guest on February-15-2020
0

javascript loop through object

const point = {
	x: 10,
 	y: 20,
};

for (const [axis, value] of Object.entries(point)) {
	console.log(`${axis} => ${value}`);
}

/** prints:
 * x => 10
 * y => 20
 */
Posted by: Guest on March-24-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language