logoalt Hacker News

crdrostlast Tuesday at 11:56 PM1 replyview on HN

pro tip: no longer necessary

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

Replies

londons_explorelast Wednesday at 10:29 AM

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