Skip to content

Instantly share code, notes, and snippets.

@iceener
Last active June 10, 2020 07:11
Show Gist options
  • Save iceener/9eb0ef803ca43d388993955d950a693f to your computer and use it in GitHub Desktop.
Save iceener/9eb0ef803ca43d388993955d950a693f to your computer and use it in GitHub Desktop.
// Uppercase first letter of a string
function capitalize(str = '') {
return str ? str.charAt(0).toUpperCase() + str.substring(1) : '';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment