Skip to content

Instantly share code, notes, and snippets.

@basquith16
Last active August 26, 2015 03:28
Show Gist options
  • Save basquith16/41cd9ccde1129d160d4d to your computer and use it in GitHub Desktop.
Save basquith16/41cd9ccde1129d160d4d to your computer and use it in GitHub Desktop.
"Write a program that prints the numbers from 1 to 100. But for multiples of three print “Fizz” instead of the number
and for the multiples of five print “Buzz”. For numbers which are multiples of both three and five print “FizzBuzz”."
for(var i = 0; i <= 100; i++) {
if((i%3 === 0) && (i%5 === 0)) {
console.log("FizzBuzz");
} else if(i%3 === 0) {
console.log("Fizz");
} else if(i%5 === 0) {
console.log("Buzz");
} else {
console.log(i);
}
}
@basquith16
Copy link
Author

Updated at 11:27pm. I had originally misread the assignment, so I fixed a couple of things.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment