Function: capitalizeFirstLetter()
capitalizeFirstLetter(
str
:string
):string
Transforms the first letter to a capital then adds all the rest after it
This differs from toTitleCase in that it doesn't force lowercase on the rest of the string.
Parameters
Parameter | Type | Description |
---|---|---|
str | string | Text to transform |
Returns
string
The input str
as Str
Example
capitalizeFirstLetter('hello world') // 'Hello world'