Answers for "for in objects js"

2

object for loop javascript

const object = { a: 1, b: 2, c: 3 };
// method 1
Object.entries(object).forEach(([key, value]) => {
    console.log(key, value)
});

//method 2
for (const key in object) {
  console.log(key, object[key])
}
// same output
// a 1
// b 2
// c 3
Posted by: Guest on May-07-2022
18

object for loop

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

for (const property in object) {
  console.log(`${property}: ${object[property]}`);
}
Posted by: Guest on April-10-2020
-1

for loop on object js

// an easy way is to

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

for (const i in obj)
  console.log(obj[i]);

//it is a simple way to loop on values of an object
Posted by: Guest on August-31-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language