Skip to content

Instantly share code, notes, and snippets.

@pSapien
Created October 23, 2019 05:06
Show Gist options
  • Save pSapien/2667694c17c3b0da83742aa68bdb29c7 to your computer and use it in GitHub Desktop.
Save pSapien/2667694c17c3b0da83742aa68bdb29c7 to your computer and use it in GitHub Desktop.
capitalize the first character of a string
/**
* @params{string}
* capitalizes the first character of the string
* capitalize('small') => 'Small'
*/
function capitalize(str) {
return str.charAt(0).toUpperCase() + str.slice(1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment