Lodash - startCase method



Syntax

_.startCase([string=''])

Converts string to start case.

Arguments

  • [string=''] (string) − The string to convert.

Output

  • (string) − Returns the start cased string.

Example

var _ = require('lodash');
var result = _.startCase('foo bar');

console.log(result);

Save the above program in tester.js. Run the following command to execute this program.

Command

\>node tester.js

Output

Foo Bar
lodash_string.htm
Advertisements