Skip to content

Instantly share code, notes, and snippets.

@andrewmd5
Last active August 29, 2015 14:11
Show Gist options
  • Save andrewmd5/6a87e78861219379f4e2 to your computer and use it in GitHub Desktop.
Save andrewmd5/6a87e78861219379f4e2 to your computer and use it in GitHub Desktop.
fizz buzz without the letter f
i = 0;
letter = 15;
do console.log(++i % 15 ? i % 3 ? i % 5 ? i : 'buzz' : letter.toString(16) + 'izz' : letter.toString(16) + 'izzbuzz'); while (i < 100)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment