Hacker News new | ask | show | jobs
by crdrost 169 days ago
pro tip: no longer necessary

    { let count = 50; const interval = setInterval(() => { addSnakeNode(); if (--count <= 0) clearInterval(interval); }, 100) }
1 comments

And polluting the global variable namespace hardly matters when using the console.