const arr = [3, 5, 7]; arr.foo = "hello"; for(const i in arr) { document.write(i + "<br>"); } for(const i of arr) { document.write(i + "<br>"); }