Function startCase

  • Converts the first character of each word in a string to uppercase and the remaining characters to lowercase.

    Start case is the naming convention in which each word is written with an initial capital letter.

    Parameters

    • str: string

      The string to convert.

    Returns string

    The converted string.

    const result1 = startCase('hello world');  // result will be 'Hello World'
    const result2 = startCase('HELLO WORLD'); // result will be 'Hello World'
    const result3 = startCase('hello-world'); // result will be 'Hello World'
    const result4 = startCase('hello_world'); // result will be 'Hello World'