Skip to content

Instantly share code, notes, and snippets.

@eprislac
Last active February 23, 2019 19:43
Show Gist options
  • Save eprislac/128781302f8e926989073312480270ff to your computer and use it in GitHub Desktop.
Save eprislac/128781302f8e926989073312480270ff to your computer and use it in GitHub Desktop.
(() => {
const fizzbuzziness =
num => `${ num % 3 === 0 ? 'Fizz' : '' }${ num % 5 === 0 ? 'Buzz' : '' }`
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment