Skip to content

Instantly share code, notes, and snippets.

@almost
Created October 18, 2014 12:31
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 almost/7357cd06d6b88b75b71e to your computer and use it in GitHub Desktop.
Save almost/7357cd06d6b88b75b71e to your computer and use it in GitHub Desktop.
function play (x) {
x += ''
r = []
for (i = -1; ++i < x.length;)
r.push('zero two three five six seven eight'.split(' ')[x[i]])
return r.join(' ')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment