I have the following code:
var images = document.getElementsByTagName('img');
if (screen.width > 640) {
for (var image in images) {
image = images[image];
console.log(image['src']);
}
}
There is only one image on the page, but for some reason the for ... in statement is looping through images three times. Why is this?