Skip to content

Instantly share code, notes, and snippets.

@zzuhan
Created November 20, 2019 07:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zzuhan/a6560a844cfe7fa745adf4bab727d7e2 to your computer and use it in GitHub Desktop.
Save zzuhan/a6560a844cfe7fa745adf4bab727d7e2 to your computer and use it in GitHub Desktop.
util #javascript
function capitalizeFirstLetter(string) {
return string.charAt(0).toUpperCase() + string.slice(1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment