Skip to content

Instantly share code, notes, and snippets.

@csclyde
Created July 30, 2014 07:47
Show Gist options
  • Select an option

  • Save csclyde/334aefda84d63f896069 to your computer and use it in GitHub Desktop.

Select an option

Save csclyde/334aefda84d63f896069 to your computer and use it in GitHub Desktop.
for (var i = 1; i <= 100; i++) {
if (i % 3 === 0) {
document.write("Fizz");
}
if (i % 5 === 0) {
document.write("Buzz");
}
if (i % 3 !== 0 && i % 5 !== 0) {
document.write(i);
}
document.write(", ");
}
document.write(".");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment