Skip to content

Instantly share code, notes, and snippets.

@BolajiOlajide
Created November 5, 2019 15:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BolajiOlajide/83ef8c2e26a64e6a2f606e2906f5464a to your computer and use it in GitHub Desktop.
Save BolajiOlajide/83ef8c2e26a64e6a2f606e2906f5464a to your computer and use it in GitHub Desktop.
const fizzBuzz = i => ({
truefalse : 'Fizz',
falsetrue : 'Buzz',
truetrue : 'FizzBuzz',
}[(i % 3 == 0) + '' + (i % 5 == 0)] || i)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment