Skip to content

Instantly share code, notes, and snippets.

@steve54b
Created June 2, 2015 23:17
Show Gist options
  • Save steve54b/0681c44d009fed6bf28e to your computer and use it in GitHub Desktop.
Save steve54b/0681c44d009fed6bf28e to your computer and use it in GitHub Desktop.
for (var i = 1; i <= 100; i++) {
if ((i % 5 === 0) && (i % 3 === 0)) {
fizzbuzz = "FizzBuzz";
} else if (i % 3 === 0) {
fizzbuzz = "Fizz";
} else if (i % 5 === 0) {
fizzbuzz = "Buzz";
} else {
fizzbuzz = i;
}
console.log(fizzbuzz);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment