Skip to content

Instantly share code, notes, and snippets.

@kevincennis
Created July 25, 2015 12:43
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 kevincennis/49a57520ef2bcd8ab1a6 to your computer and use it in GitHub Desktop.
Save kevincennis/49a57520ef2bcd8ab1a6 to your computer and use it in GitHub Desktop.
map usage
map([ 'a', 'b', 'c' ], function( value ) {
return value.toUpperCase();
}); // [ 'A', 'B', 'C' ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment