Skip to content

Instantly share code, notes, and snippets.

@danse
Created May 5, 2014 10:04
Show Gist options
  • Save danse/684ae8a93527dd156a95 to your computer and use it in GitHub Desktop.
Save danse/684ae8a93527dd156a95 to your computer and use it in GitHub Desktop.
fizz buzz enterprise edition with javascript
for (var i=1; i<=100; i++) { !(i%3)||console.log("Fizz"); !(i%5)||console.log("Buzz"); !(i%15)||console.log("FizzBuzz"); i%3&&i%5&&console.log(i); }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment