Saturday, September 6, 2025
HomeLanguagesJavascriptLodash _.deburr() Method

Lodash _.deburr() Method

Lodash is a JavaScript library that works on the top of underscore.js. Lodash helps in working with arrays, strings, objects, numbers, etc. 

The _.deburr() method is used to convert Latin-1 Supplement and Latin Extended-A letters to basic Latin letters and removing combining diacritical marks.

Syntax:

_.deburr([string=''])

Parameters: This method accepts single parameter as mentioned above and described below:

  • string: This parameter holds the Latin-1 Supplement and Latin Extended-A letters string.

Return Value: This method returns the basic Latin letters string.

Example 1:

Javascript




const _ = require('lodash'); 
  
var str1 = _.deburr("ÀÄÅÆÇÈÉ");
console.log(str1);
  
var str2 = _.deburr("ãäåæçè");
console.log(str2);


Output:

"AAAAeCEE"
"aaaaece"

Example 2:

Javascript




const _ = require('lodash'); 
  
var str1 = _.deburr("ĜĚĔĶŜ");
console.log(str1);
  
var str2 = _.deburr("ĝęėķś");
console.log(str2);


Output:

"GEEKS"
"neveropen"
RELATED ARTICLES

Most Popular

Dominic
32269 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6638 POSTS0 COMMENTS
Nicole Veronica
11802 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11868 POSTS0 COMMENTS
Shaida Kate Naidoo
6752 POSTS0 COMMENTS
Ted Musemwa
7029 POSTS0 COMMENTS
Thapelo Manthata
6704 POSTS0 COMMENTS
Umr Jansen
6721 POSTS0 COMMENTS