Skip to content

Instantly share code, notes, and snippets.

@uutarou10
Created May 9, 2017 10:54
Show Gist options
  • Save uutarou10/274a5992b18cf41de45077d2fa66a3be to your computer and use it in GitHub Desktop.
Save uutarou10/274a5992b18cf41de45077d2fa66a3be to your computer and use it in GitHub Desktop.
let fb
if(fb = (n) => {console.log(n % 3 == 0 ? 'fizz' : n % 5 == 0 ? 'buzz' : n % 3 == 0 && n % 5 == 0 ? 'fizzbuzz' : n)}) {
Array.apply(null, Array(100)).map((n,v) => {fb(v)})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment