Skip to content

Instantly share code, notes, and snippets.

@Alvai
Last active October 23, 2018 13:15
Show Gist options
  • Save Alvai/e3ffe128b50d8b9c92eb0d9946dc8ffe to your computer and use it in GitHub Desktop.
Save Alvai/e3ffe128b50d8b9c92eb0d9946dc8ffe to your computer and use it in GitHub Desktop.
Snippets
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