Skip to content

Instantly share code, notes, and snippets.

@Knighton910
Forked from jaysonrowe/FizzBuzz.js
Last active August 31, 2015 07:40
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 Knighton910/3e21e278da1821c86582 to your computer and use it in GitHub Desktop.
Save Knighton910/3e21e278da1821c86582 to your computer and use it in GitHub Desktop.
FizzBuzz JavaScript solution
for (var i=1; i <= 20; i++)
{
if (i % 15 == 0)
console.log("FizzBuzz");
else if (i % 3 == 0)
console.log("Fizz");
else if (i % 5 == 0)
console.log("Buzz");
else
console.log(i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment