Skip to content

Instantly share code, notes, and snippets.

@clemgrim
Last active August 29, 2015 14:19
Show Gist options
  • Save clemgrim/33e1d1ef2b354220618c to your computer and use it in GitHub Desktop.
Save clemgrim/33e1d1ef2b354220618c to your computer and use it in GitHub Desktop.
// string to code
arr = [].map.call('my string', (function(a){return a.charCodeAt(0)}));
// code to string
String.fromCharCode.apply(null, arr)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment