how to foreach in object javascript code example
Example 1: javascript foreach object
const list = {
key: "value",
name: "lauren",
email: "[email protected]",
age: 30
};
// Object.keys returns an array of the keys
// for the object passed in as an argument.
Object.keys(list).forEach(val => {
let key = val;
let value = list[val];
console.log(`${key} : ${value}`);
});
// Returns:
// "key : value"
// "name : lauren";
// "email : [email protected]"
// "age : 30"
Example 2: foreach object javascript
const obj = {
a: "aa",
b: "bb",
c: "cc",
};
//This for loop will loop through all keys in the object.
// You can get the value by calling the key on the object with "[]"
for(let key in obj) {
console.log(key);
console.log(obj[key]);
}
//This will return the following:
// a
// aa
// b
// bb
// c
// cc