_.capitalize([string=''])
Converts string to camel case.Converts the first character of string to upper case and the remaining to lower case.
Arguments
[string=''] (string)
: The string to capitalize.
Returns
(string)
: Returns the capitalized string.