Skip to content

Instantly share code, notes, and snippets.

@Rahul-Sagore
Last active April 1, 2018 13:29
Show Gist options
  • Save Rahul-Sagore/1f952750cbdf4c1fb411eb6290553ee2 to your computer and use it in GitHub Desktop.
Save Rahul-Sagore/1f952750cbdf4c1fb411eb6290553ee2 to your computer and use it in GitHub Desktop.
Fizzbuzz output function in Javascript
var fizzbuzz = num => {
var message = '';
if (num % 3 == 0) message += 'fizz';
if (num % 5 == 0) message += 'buzz';
return message;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment