It will convert the first character of the string to lowercase.
string
1.0.0
lowerFirst('Fred');// => 'fred' Copy
lowerFirst('Fred');// => 'fred'
lowerFirst('FRED');// => 'fRED' Copy
lowerFirst('FRED');// => 'fRED'
lowerFirst('fred');// => 'fred' Copy
lowerFirst('fred');// => 'fred'
It will convert the first character of the
string
to lowercase.