Skip to content

Instantly share code, notes, and snippets.

@abacaj
Created May 24, 2016 21:46
Show Gist options
  • Save abacaj/51fd172977ad3358b29198cf989355ff to your computer and use it in GitHub Desktop.
Save abacaj/51fd172977ad3358b29198cf989355ff 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”.
function fizzbuzz() {
for (var i = 1; i <= 100; i++) {
var str = "";
str += (i % 3 === 0) ? "fizz" : "";
str += (i % 5 === 0) ? "buzz" : "";
str = (str) ? str : i;
console.log(str);
}
}
fizzbuzz();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment