Skip to content

Instantly share code, notes, and snippets.

@theWhiteFox
Created January 13, 2018 14:32
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 theWhiteFox/26728c99446f79635d6ed7455c2cf005 to your computer and use it in GitHub Desktop.
Save theWhiteFox/26728c99446f79635d6ed7455c2cf005 to your computer and use it in GitHub Desktop.
FizzBuzz created by steTheWhiteFox - https://repl.it/@steTheWhiteFox/FizzBuzz
console.log(7%3);
function fizzBuzz(num) {
for (var i = 1; i <= num; i++) {
if (i % 15 === 0) console.log("FizzBuzz");
else if (i % 5 === 0) console.log("fizz");
else if (i % 3 === 0) console.log("Buzz");
else console.log(i);
}
}
fizzBuzz(20);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment