Spot the bug - #29

Find the bug in this animation loop.

let x = 0;
function tick() {
  x + 2;
  requestAnimationFrame(tick);
}
tick();

Reply with what is broken and how you would fix it.

1 Like

The incrementer should be

x+=2

:innocent: