Const
Converts a camelCase string to a human-readable format with spaces between words.
The camelCase string to convert.
The string converted to pretty case, with spaces between words and the first letter capitalized.
camelToPrettyCase('camelCaseString'); // Returns "Camel Case String" Copy
camelToPrettyCase('camelCaseString'); // Returns "Camel Case String"
Converts a camelCase string to a human-readable format with spaces between words.