Lodash - camelCase method



Syntax

_.camelCase([string=''])

Converts string to camel case.

Arguments

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

Output

  • (string) − Returns the camel cased string.

Example

var _ = require('lodash');
var input = 'TutorialsPoint';
var result = _.camelCase(input);

console.log(result);

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

Command

\>node tester.js

Output

tutorialsPoint
lodash_string.htm
Advertisements