capitalize
Converts the first character of a string to uppercase and the rest to lowercase.
Syntax
typescript
capitalize(str: string): stringParameters
| Parameter | Type | Description |
|---|---|---|
str | string | The string to be capitalized. |
Returns
| Type | Description |
|---|---|
string | The resulting string with the first character in uppercase and the rest in lowercase. |
Example
typescript
capitalize("exemplo"); // "Exemplo"
capitalize("eXEMPLO"); // "Exemplo"
capitalize(""); // ""Notes
- Throws
TypeErrorif the argument is not a string. - Returns an empty string if the input is empty.
