node.js iterate through objects 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 in yourobject) {
if (yourobject.hasOwnProperty(key)) {
console.log(key, yourobject[key]);
}
}