_.upperFirst

_.upperFirst([string=''])

source npm package

Converts the first character of string to upper case.

Since

4.0.0

Arguments

  1. [string=''] (string): The string to convert.

Returns

(string): Returns the converted string.

Example

_.upperFirst('fred');
// => 'Fred'
 
_.upperFirst('FRED');
// => 'FRED'