Lodash - kebabCase method



Syntax

_.kebabCase([string=''])

Converts string to kebab case.

Arguments

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

Output

  • (string) − Returns the kebab cased string.

Example

var _ = require('lodash');
var result = _.kebabCase('FooBar');

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