iterate each key in an object code example
Example 1: foreach object javascript
/* Answer to: "foreach object javascript" */
const games = {
"Fifa": "232",
"Minecraft": "476"
"Call of Duty": "182"
};
Object.keys(games).forEach((item, index, array) => {
let msg = `There is a game called ${item} and it has sold ${games[item]} million copies.`;
console.log(msg);
});
/*
The foreach statement can be used in many ways and with object can make
development a lot easier.
A link for for more information on this can be found below and in the source:
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/forEach
*/
Example 2: object iterate in javascript
for (let [key, value] of Object.entries(yourobject)) {
console.log(key, value);
}