for Object js code example

Example 1: foreach object javascript

const students = {
  adam: {age: 20},
  kevin: {age: 22},
};

Object.entries(students).forEach(student => {
  // key: student[0]
  // value: student[1]
  console.log(`Student: ${student[0]} is ${student[1].age} years old`);
});
/* Output:
Student: adam is 20 years old
Student: kevin is 22 years old
*/

Example 2: js loop over object

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

for (const property in object) {
  console.log(`${property}: ${object[property]}`);
}

Example 3: loop an object in javascript

var p = {
    "p1": "value1",
    "p2": "value2",
    "p3": "value3"
};

for (var key in p) {
    if (p.hasOwnProperty(key)) {
        console.log(key + " -> " + p[key]);
    }
}

Example 4: js for in object

var obj = { foo: 'bar', baz: 42 };
console.log(Object.entries(obj)); // [ ['foo', 'bar'], ['baz', 42] ]

for(const [i, val] of Object.entries(obj))
	new_obj[i] = val;

Example 5: for in object javascript

var obj = { foo: 'bar', baz: 42 };

Object.keys(obj).forEach((key) => {
    const el = obj[key];
    console.log(
      {
        key: key,
        value: el
      }
    );
});

Example 6: javascript loop through object

var person = {"name":"bob", age:45};

for (var property in person) {
   console.log(person[property]);
}