Lodash _.trimEnd() Method

Lodash _.trimEnd() method is used to remove trailing white spaces or specified characters from the end of the given string.

Syntax:

_.trimEnd( string, chars );

Parameters:

  • string: It is the string that has to be trimmed.  The default value is an empty string.
  • chars: It is a set of characters that have to be trimmed from the string. It is an optional parameter. The default value is a whitespace.

Return Value:

This method returns the trimmed string.

Example 1: In this example, we are trimming the given array from the end.

Javascript




// Defining Lodash variable
const _ = require('lodash');
 
// The string to trim
let str = "   Beginner-for-Beginner   ";
 
// Using _.trimEnd() method
console.log(_.trimEnd(str));


Output:

"   Beginner-for-Beginner"

Example 2: In this example, we are trimming the given array from the end from where the given value is present.

Javascript




// Defining Lodash variable
const _ = require('lodash');
 
// The string to trim
let str = "----w3wiki----";
 
// Using _.trimEnd() method
// with specific characters to trim
console.log(_.trimEnd(str, "-"))


Output:

"----w3wiki"

Contact Us