April 2025posted on 04.21.2025JavaScript Symbol.iterator Symbol.iterator defines the default iterator for an object. Applying it to an object to enable iteration: const myObject = { a: 1, b: 2, c: 3 }; myObject[Symbol.iterator] = function* () { for (const key of Object.keys(this)) { yield [key, this[key]]; } }; for (const [key, value] of myObject) { console.log(key, value); } No reactions yet
JavaScript Symbol.iterator
Symbol.iterator defines the default iterator for an object. Applying it to an object to enable iteration: