Skip to content

Instantly share code, notes, and snippets.

@bflannery
Created January 2, 2017 17:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bflannery/a037d3d4808586d74d532429a553d203 to your computer and use it in GitHub Desktop.
Save bflannery/a037d3d4808586d74d532429a553d203 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"
// 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(num) {
console.log(num);
for (var i = 0; i <= 100; i++) {
if (i % 5 === 0 && i % 3 === 0 ) {
console.log('fizzbuzz');
} else if (i % 5 === 0) {
console.log('buzz');
} else if (i % 3 === 0) {
console.log('fizz');
} else {
console.log(i);
}
}
}
console.log(fizzBuzz(100));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment