javascript for in object keys code example
Example 1: javascript for key in object
// iterates over all enumerable properties of an object that are
// keyed by strings (ignoring ones keyed by Symbols),
// including inherited enumerable properties.
const object = { a: 1, b: 2, c: 3 };
for (const property in object) {
console.log(`${property}: ${object[property]}`);
}
// expected output:
// "a: 1"
// "b: 2"
// "c: 3"
Example 2: how to iterate over keys in object javascript
var p = {
"p1": "value1",
"p2": null,
"p3": "value3"
};
for (var key in p) {
if (p.hasOwnProperty(key)) {
console.log(key + " -> " + p[key]);
}
}