ichigyou
    Preparing search index...

    Function toTitleCase

    • Converts a string to title case.

      Parameters

      • str: string

        The string to be converted.

      Returns string

      The input string converted to title case.

      const result = toTitleCase('hello world');
      console.log(result); // 'Hello World'