Namespace
The input string.
The string with the first letter capitalized.
const originalString = "hello, world!";
const capitalizedString = capitalizeFirstLetter(originalString);
console.log(capitalizedString); // Output: "Hello, world!"
Generated using TypeDoc
StringUtils
Capitalize the first letter of a string.