Skip to content

Instantly share code, notes, and snippets.

@edele
Created August 20, 2014 05:48
Show Gist options
  • Select an option

  • Save edele/da350c330133acbfef8b to your computer and use it in GitHub Desktop.

Select an option

Save edele/da350c330133acbfef8b to your computer and use it in GitHub Desktop.
for (var i=1; i<=100; 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