Skip to content

Instantly share code, notes, and snippets.

@moetelo
Created February 28, 2020 15:23
Show Gist options
  • Save moetelo/af7ebcc199ba91e9576dbb9c9f0059cb to your computer and use it in GitHub Desktop.
Save moetelo/af7ebcc199ba91e9576dbb9c9f0059cb to your computer and use it in GitHub Desktop.
const fb = (i, limit) => !console.log(`${!(i % 3) ? 'Fizz' : ''}${!(i % 5) ? 'Buzz' : ''}` || i)
&& i !== limit
&& fb(++i, limit);
fb(1, 100);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment