Created
March 21, 2020 05:56
-
-
Save tkazusa/6a19fb3d96c834bb2853140532322a79 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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