Answers for "js obkect for loop"

10

js loop over object

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
0

going through every attributes of an object javascript

let a = {x: 200, y: 1}
let attributes = Object.keys(a)
console.log(attributes)
//output: ["x", "y"]
Posted by: Guest on April-09-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language