Converts the first character of string to lower case.
string
4.0.0
lowerFirst('Fred')// => 'fred'lowerFirst('FRED')// => 'fRED' Copy
lowerFirst('Fred')// => 'fred'lowerFirst('FRED')// => 'fRED'
The string to convert.
Returns the converted string.
Converts the first character of
string
to lower case.Since
4.0.0
Example