Skip to content

Instantly share code, notes, and snippets.

@laser
Created December 31, 2014 18:25
Show Gist options
  • Save laser/a3b5b2b94d4e9ca14a55 to your computer and use it in GitHub Desktop.
Save laser/a3b5b2b94d4e9ca14a55 to your computer and use it in GitHub Desktop.
a
function capitalize(s) {
return s.charAt(0).toUpperCase() + s.slice(1).toLowerCase();
}
var fruitsOfTheWorld = [
["apple", "pineapple", "pear"],
["manzana", "pera", "piña"],
["poma", "perera", "ananàs"]
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment