Last active
October 23, 2018 13:15
-
-
Save Alvai/e3ffe128b50d8b9c92eb0d9946dc8ffe to your computer and use it in GitHub Desktop.
Snippets
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
const capitalize = (string) => { | |
return string[0].toUpperCase() + string.slice(1); | |
}; | |
capitalize('hello world'); | |
// returns Hello world |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment