Skip to content

Instantly share code, notes, and snippets.

@altamic
Created May 31, 2012 09:15
Show Gist options
  • Save altamic/2842174 to your computer and use it in GitHub Desktop.
Save altamic/2842174 to your computer and use it in GitHub Desktop.
how my nickname is obtained - js
"Michelangelo Altamore".split(' ').reverse().map(function(x) { return x.toLowerCase().substring(0,4)}).join('').substring(0,7)
// => "altamic"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment