Skip to content

Instantly share code, notes, and snippets.

@matthewoestreich
Created August 21, 2021 16:12
Show Gist options
  • Save matthewoestreich/e4014fd44ec68e9c4046f902b8680837 to your computer and use it in GitHub Desktop.
Save matthewoestreich/e4014fd44ec68e9c4046f902b8680837 to your computer and use it in GitHub Desktop.
caps first letter in str
function capsFirstLetter(str) {
if (typeof str !== "string") {
throw new Error("param `str` must be a string!");
}
const firstLetterCaps = str[0].toUpperCase();
const restOfString = str.slice(1);
return firstLetterCaps + restOfString;
}
const myStr = "something";
const results = capsFirstLetter(myStr)
console.log(results)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment