Skip to content

Instantly share code, notes, and snippets.

@violetcode
Last active November 17, 2015 22:07
Show Gist options
  • Save violetcode/3bf2426e05e1e08fd176 to your computer and use it in GitHub Desktop.
Save violetcode/3bf2426e05e1e08fd176 to your computer and use it in GitHub Desktop.
FizzBuzz JS
var fizzbuzz = function(num){
var result = "";
if (num % 3 == 0){
result += "Fizz";
}
if (num % 5 == 0){
result += "Buzz";
}
if (result == ""){
result += num;
}
console.log(result);
}
for(var i = 1; i <= 100; i++){
fizzbuzz(i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment