Skip to content

Instantly share code, notes, and snippets.

@chrisseaton
Created April 24, 2018 22:21
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 chrisseaton/ca69dd79d35c8c50c99f0092dd1715a9 to your computer and use it in GitHub Desktop.
Save chrisseaton/ca69dd79d35c8c50c99f0092dd1715a9 to your computer and use it in GitHub Desktop.
function fizzbuzz(n) {
if ((n % 3 == 0) && (n % 5 == 0)) {
return 'FizzBuzz';
} else if (n % 3 == 0) {
return 'Fizz';
} else if (n % 5 == 0) {
return 'Buzz';
} else {
return n;
}
}
for (var n = 1; n <= 20; n++) {
print(fizzbuzz(n));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment