Created
May 31, 2012 09:15
-
-
Save altamic/2842174 to your computer and use it in GitHub Desktop.
how my nickname is obtained - js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"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