Skip to content

Instantly share code, notes, and snippets.

@bogdanmoisin
Last active August 29, 2015 14:23
Show Gist options
  • Select an option

  • Save bogdanmoisin/abafd6d3443eeaf8062b to your computer and use it in GitHub Desktop.

Select an option

Save bogdanmoisin/abafd6d3443eeaf8062b to your computer and use it in GitHub Desktop.
//FizzBuzz
// Your code here.
for ( var i = 0; i <= 100; i++) {
var output = ""
if ( i % 3 == 0 ) {
output += "Fizz";
}
if ( i % 5 == 0) {
output += "Buzz";
}
console.log(output || i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment