Open In App

Lodash _.lowerCase() Method

Improve
Improve
Like Article
Like
Save
Share
Report

Lodash _.lowerCase() method is used to convert the given string to lowercase. The string can be space-separated, dash-separated, or can be separated by underscores.

Syntax:

_.lowerCase([string='']);

Parameters:

  • string: This parameter holds the string that needs to be converted into lowercase.

Return Value:

This method returns the lowercase string.

Example 1: In this example, we are using the _.lowerCase() method for converting the given string into lowercase.

Javascript




const _ = require('lodash');
 
let str1 = _.lowerCase("GEEKS FOR GEEKS");
console.log(str1);
 
let str2 = _.lowerCase("GFG--Geeks");
console.log(str2);


Output:

geeks for geeks
gfg geeks

Example 2: In this example, we are using the _.lowerCase() method for converting the given string into lowercase.

Javascript




const _ = require('lodash');
 
let str1 = _.lowerCase("GEEKS__FOR__GEEKS");
console.log(str1);
 
let str2 = _.lowerCase("G4G--geeks--GEEKS");
console.log(str2);
 
let str3 = _.lowerCase("GEEKS-----FOR_____Geeks");
console.log(str3);


Output:

geeks for geeks
g 4 g geeks geeks
geeks for geeks

Last Updated : 20 Oct, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads