Monday, November 18, 2024
Google search engine
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

Recent Comments