why has this been associated with the above? I read through those answers after understanding the issue from answers provided below and there's nothing in the above that would have generated any insight.
html doc
let tester = 0;
setInterval(iterateCounter(), 1000);
function iterateCounter(){
++ tester;
console.log(tester);
}
this is probably a horrible question but i've checked MDN, JSinfo, and perused stack for about 20 minutes on top of that. Why is this code snippet running once and then not repeating?