Skip to content

Instantly share code, notes, and snippets.

@tkazusa
Created March 21, 2020 05:56
Show Gist options
  • Save tkazusa/6a19fb3d96c834bb2853140532322a79 to your computer and use it in GitHub Desktop.
Save tkazusa/6a19fb3d96c834bb2853140532322a79 to your computer and use it in GitHub Desktop.
for (var i = 1; i < 100001; i++) {
if (i % 15 === 0) {
document.write('FizzBuzz ');
} else if (i % 5 === 0) {
document.write('Buzz ');
} else if (i % 3 === 0) {
document.write('Fizz ');
} else {
document.write(i + ' ');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment