The _.toDash() method is used to convert a camel case string to a dashed string.
Syntax:
_.toDash( camelCaseString);
Parameters:
- toDash: This method takes a camel Case String to convert.
Return Value: This method returns a converted dashed string.
Note: This will not work in normal JavaScript because it requires the underscore.js contrib library to be installed.
underscore.js contrib library can be installed using npm install underscore-contrib –save.
Example 1:
javascript
// Defining underscore contrib variableconst _ = require('underscore-contrib');Â
let dashst = _.toDash("neveropenForGeeks");Â
console.log("The converted Dashed String is :", dashst); |
Output:
The converted Dashed String is : neveropen-for-neveropen
Example 2:
javascript
// Defining underscore contrib variableconst _ = require('underscore-contrib');Â
let dashst = _.toDash("aBC");Â
console.log("The converted Dashed String is :", dashst); |
Output:
The converted Dashed String is : a-b-c
