Formats the given string in title case fashion
title('hello world') -> 'Hello World'title('va_va_boom') -> 'Va Va Boom'title('root-hook') -> 'Root Hook'title('queryItems') -> 'Query Items' Copy
title('hello world') -> 'Hello World'title('va_va_boom') -> 'Va Va Boom'title('root-hook') -> 'Root Hook'title('queryItems') -> 'Query Items'
Description
Formats the given string in title case fashion
Example