Skip to content

Instantly share code, notes, and snippets.

@ZeroX-DG
Last active May 6, 2017 02:44
Show Gist options
  • Save ZeroX-DG/e49f7d45ba65216fde065cd4512e7f76 to your computer and use it in GitHub Desktop.
Save ZeroX-DG/e49f7d45ba65216fde065cd4512e7f76 to your computer and use it in GitHub Desktop.
for(var i = 1; i < 30; i++){
console.log(i % 15 == 0 ? "FizzBuzz" : i % 3 == 0 ? "Fizz" : i % 5 == 0 ? "Buzz" : i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment