The for...in statement iterates over all enumerable string properties of an Object (ignoring properties keyed by symbols), including inherited enumerable properties....const obj = { a: 1, b: 2, c: 3 }; for (const prop in obj) { console...console.log(`obj.${prop} = ${obj[prop]}`); } // Logs: // "obj.a = 1"...