Skip to content

Instantly share code, notes, and snippets.

@LucasRizzotto
Created February 4, 2015 03:32
Show Gist options
  • Save LucasRizzotto/4618049119e45a6b5f6b to your computer and use it in GitHub Desktop.
Save LucasRizzotto/4618049119e45a6b5f6b to your computer and use it in GitHub Desktop.
My answer to the Eloquent JS FizzBuzz exercise
/* My solution to the FizzBuzz exercise */
for ( i = 1 ; 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)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment