Skip to content

Instantly share code, notes, and snippets.

@alicht
Created August 31, 2015 20:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alicht/c9595058f49f85db7c1f to your computer and use it in GitHub Desktop.
Save alicht/c9595058f49f85db7c1f to your computer and use it in GitHub Desktop.
for (var i=1; i <= 20; i++) {
if ( num % 15 = 0 )
console.log("Fizzbuzz")
else if ( num % 5 = 0)
console.log("Buzz")
else if (num % 3 = 0 )
console.log("Fizz")
else
console.log(i)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment