Skip to content

Instantly share code, notes, and snippets.

@FranciscoG
Last active December 23, 2015 00:58
Show Gist options
  • Save FranciscoG/6556762 to your computer and use it in GitHub Desktop.
Save FranciscoG/6556762 to your computer and use it in GitHub Desktop.
My own simple solution to the FizzBuzz test.
/* FizzBuzz rules:
*
* 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 = 1; i <= 100; i++) {
if (i % 15 === 0) { console.log('FizzBuzz '+i); }
else if (i % 3 === 0) { console.log('Fizz '+i); }
else if (i % 5 === 0) { console.log('Buzz '+i); }
else { console.log(i); }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment