Lodash - upperFirst method
Syntax
_.upperFirst([string=''])
Converts the first character of string to upper case.
Arguments
[string=''] (string) − The string to convert.
Output
(string) − Returns the converted string.
Example
var _ = require('lodash');
var result = _.upperFirst('fooBar');
console.log(result);
Save the above program in tester.js. Run the following command to execute this program.
Command
\>node tester.js
Output
FooBar
lodash_string.htm
Advertisements