Skip to content

Instantly share code, notes, and snippets.

@StoneCypher
Created July 10, 2015 05:52
Show Gist options
  • Select an option

  • Save StoneCypher/06cd956f5502de0b5e33 to your computer and use it in GitHub Desktop.

Select an option

Save StoneCypher/06cd956f5502de0b5e33 to your computer and use it in GitHub Desktop.
var Text = (i % 3)?
( (i % 5)? 'Fizzbuzz' : 'Fizz' )
: ( (i % 5)? 'Buzz' : i.toString() );
list.append( <li>{Text}</li> );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment