Converts a string to proper case, where the first letter of every word is capitalized.
The strings to convert (can be multiple arguments or an array)
The proper-cased string
toProperCase('hello world'); // 'Hello World' Copy
toProperCase('hello world'); // 'Hello World'
Converts a string to proper case, where the first letter of every word is capitalized.