Open In App

Lodash _.camelCase() Method

Last Updated : 18 Oct, 2023
Summarize
Comments
Improve
Suggest changes
Share
Like Article
Like
Report

Lodash _.camelCase() method is used to convert a string into a camel case string. The string can be space-separated, dash-separated, or can be separated by underscores.

Syntax:

_.camelCase(string);

Parameters:

  • string: This parameter holds the string that needs to be converted into a camel case string.

Return Value:

This method returns the camel case string

Example 1: In this example, we are changing the string which is space-separated and dash-separated into the camel case using the _.camelCase() method.

JavaScript
// Requiring the lodash library 
const _ = require('lodash');

// Use of _.camelCase() method
let str1 = _.camelCase("Geeks for Geeks");

// Printing the output 
console.log(str1);

// Use of _.camelCase() method
let str2 = _.camelCase("GFG-Geeks");

// Printing the output 
console.log(str2);

Output:

geeksForGeeks
gfgGeeks

Example 2: In this example, we are changing the string which is underscore-separated into the camel case using the _.camelCase() method.

JavaScript
// Requiring the lodash library 
const _ = require('lodash');

// Use of _.camelCase() method
let str1 = _.camelCase("Geeks__for__Geeks");

// Printing the output 
console.log(str1);

// Use of _.camelCase() method
let str2 = _.camelCase("GFG--Geeks");

// Printing the output 
console.log(str2);

Output:

geeksForGeeks
gfgGeeks

Similar Reads