Skip to content

Instantly share code, notes, and snippets.

@boutell
Created June 11, 2016 19:32
Show Gist options
  • Save boutell/fc6a7750bf43b6dd87fe6526afa0d41a to your computer and use it in GitHub Desktop.
Save boutell/fc6a7750bf43b6dd87fe6526afa0d41a 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”."
var i;
for (i = 1; (i <= 100); i++) {
var three = !(i % 3);
var five = !(i % 5);
if (three && five) {
console.log('FizzBuzz');
} else if (three) {
console.log('Fizz');
} else if (five) {
console.log('Buzz');
} else {
console.log(i);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment