Javascript example: iterate over object
Example iterating over object using Javascript
This snippet demonstrates multiple ways to iterate through the properties of a JavaScript object. It uses for...in with hasOwnProperty, then compares Object.keys, Object.values, and Object.entries with both forEach and for...of loops for reading keys, values, and key-value pairs.