Skip to content

Instantly share code, notes, and snippets.

@fielding
Created November 1, 2017 04:38
Show Gist options
  • Select an option

  • Save fielding/a9a0c1c0e5cd42e02e233aea89c7485a to your computer and use it in GitHub Desktop.

Select an option

Save fielding/a9a0c1c0e5cd42e02e233aea89c7485a to your computer and use it in GitHub Desktop.
const range = Array.from(Array(101).keys());
var buzzler = n => console.log(
`${n}: ${ n % 3 === 0 ? 'Fizz' : '' }${ n % 5 === 0 ? 'Buzz' : '' }`
);
range.map(buzzler);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment