Skip to content

Instantly share code, notes, and snippets.

@dengjonathan
Created September 10, 2016 18:32
Show Gist options
  • Save dengjonathan/4209bb1e96ab3384bb5b358fb140c6ae to your computer and use it in GitHub Desktop.
Save dengjonathan/4209bb1e96ab3384bb5b358fb140c6ae to your computer and use it in GitHub Desktop.
callToMap
names2 = ['kendra', 'kim', 'kampbell'];
var capitalize = function(word) {
return word[0].toUpperCase() + word.slice(1);
};
map(names, capitalize); // ['Kendra', 'Kim', 'Kampbell']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment