Answers for "js cycle trough object"

8

js loop through object

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

Object.keys(obj).forEach(key => {
	console.log("key: ", key);
  	console.log("Value: ", obj[key]);
} );
Posted by: Guest on November-04-2020
0

Iteration over JS object

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

for (var key in p) {
    if (p.hasOwnProperty(key)) {
        console.log(key + " -> " + p[key]);
    }
}
 Run code snippetHide results
Posted by: Guest on April-09-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language