Skip to content

Instantly share code, notes, and snippets.

@vivianspencer
Created March 4, 2023 19:02
Show Gist options
  • Save vivianspencer/22156344d9b72289b949a74058823085 to your computer and use it in GitHub Desktop.
Save vivianspencer/22156344d9b72289b949a74058823085 to your computer and use it in GitHub Desktop.
Javascript Utilities
/**
* Taken from stackoverflow
* https://stackoverflow.com/questions/1026069/how-do-i-make-the-first-letter-of-a-string-uppercase-in-javascript#answer-1026087
*/
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