Friday, September 19, 2025
HomeLanguagesJavascriptUnderscore.js _.toDash() Method

Underscore.js _.toDash() Method

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 variable
const _ = 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 variable
const _ = require('underscore-contrib');
 
let dashst = _.toDash("aBC");
 
console.log("The converted Dashed String is :", dashst);


Output:

The converted Dashed String is : a-b-c
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32301 POSTS0 COMMENTS
Milvus
84 POSTS0 COMMENTS
Nango Kala
6666 POSTS0 COMMENTS
Nicole Veronica
11840 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11898 POSTS0 COMMENTS
Shaida Kate Naidoo
6781 POSTS0 COMMENTS
Ted Musemwa
7056 POSTS0 COMMENTS
Thapelo Manthata
6739 POSTS0 COMMENTS
Umr Jansen
6744 POSTS0 COMMENTS