Skip to main content

Signature

path=null start=null
toTitleCase(str: string): string

Parameters

  • str: string - The string to be converted.

Returns

string - The input string converted to title case.

Example

path=null start=null
const result = toTitleCase('hello world')
console.log(result) // 'Hello World'

Source

Defined in string.ts:44