Skip to content

Instantly share code, notes, and snippets.

@ethanstenis
Created July 13, 2017 18:02
Show Gist options
  • Save ethanstenis/08096ed1e27f68bbb953ee1edfff9a39 to your computer and use it in GitHub Desktop.
Save ethanstenis/08096ed1e27f68bbb953ee1edfff9a39 to your computer and use it in GitHub Desktop.
This is the solution to the FizzBuzz Kata
function fizzbuzz() {
for(let i=0; i <= 100; i++) {
if(i % 15 === 0) {
console.log('FizzBuzz');
} else if (i % 5 === 0) {
console.log('Fizz');
} else if (i % 3 === 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