_.upperFirst([string=''])
Converts the first character of string
to upper case.
Since
4.0.0
Arguments
-
[string='']
(string): The string to convert.
Returns
(string): Returns the converted string.
Example
1 2 3 4 5 | _.upperFirst( 'fred' ); // => 'Fred' _.upperFirst( 'FRED' ); // => 'FRED' |
Please login to continue.