Home > @infiniteobjects/core-library-web > ChangeCase > toTitle
Converts string
to title case. i.e. Words Separared With The First Letter Capitalized
Signature:
static toTitle(str: string): string;
Parameter | Type | Description |
---|---|---|
str | string |
Returns:
string
ChangeCase.toTitle('Foo Bar');
// => 'Foo Bar'
ChangeCase.toTitle('fooBar');
// => 'Foo Bar'
ChangeCase.toTitle('__FOO_BAR__');
// => 'Foo Bar'