Skip to content

Instantly share code, notes, and snippets.

@ashleytbasinger
Created July 12, 2015 03:42
Show Gist options
  • Save ashleytbasinger/d63ae7bb15b0f66fac41 to your computer and use it in GitHub Desktop.
Save ashleytbasinger/d63ae7bb15b0f66fac41 to your computer and use it in GitHub Desktop.
fizz-buzz
for (i = 1; i < 21; i++) {
if (i % 3 === 0 && i % 5 === 0) {
console.log("FizzBuzz");
} else if (i % 5 === 0) {
console.log("Buzz");
} else if (i % 3 === 0) {
console.log("Fizz");
} else {
console.log(i);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment