Skip to content

Instantly share code, notes, and snippets.

@tiagodealmeida
Created April 19, 2017 11:45
Show Gist options
  • Save tiagodealmeida/6b32d0bd5b40a7f94fa71fc51248aa40 to your computer and use it in GitHub Desktop.
Save tiagodealmeida/6b32d0bd5b40a7f94fa71fc51248aa40 to your computer and use it in GitHub Desktop.
fizzBuzz function code challenge
for (var i = 1; i <= 15; 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