Skip to content

Instantly share code, notes, and snippets.

@joncasey
Created April 12, 2015 02:22
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 joncasey/ccba86cde5f13e8dbd0f to your computer and use it in GitHub Desktop.
Save joncasey/ccba86cde5f13e8dbd0f to your computer and use it in GitHub Desktop.
Apply to Recurse Center (formerly known as Hacker School)
for (var i = 1, l = 100; i <= l; i++) {
var s = ''
if (i % 3 === 0) s += 'Crackle'
if (i % 5 === 0) s += 'Pop'
console.log(s || i)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment