-
-
Save laser/a3b5b2b94d4e9ca14a55 to your computer and use it in GitHub Desktop.
a
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
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