Skip to content

Instantly share code, notes, and snippets.

@12
Created May 21, 2020 10:59
Show Gist options
  • Save 12/7dc7e71bac562ab8b24d03002db16bf5 to your computer and use it in GitHub Desktop.
Save 12/7dc7e71bac562ab8b24d03002db16bf5 to your computer and use it in GitHub Desktop.
FizzBuzz
for (var i = 0; i < 100; i++){
var msg = "";
if (!(i%3)) msg += "Fizz";
if (!(i%5)) msg += "Buzz";
console.log(msg || i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment