Lodash - trimEnd method



Syntax

_.trimEnd([string=''], [chars=whitespace])

Removes trailing whitespace or specified characters from string.

Arguments

  • [string=''] (string) − The string to trim.

  • [chars=whitespace] (string) − The characters to trim.

Output

  • (string) − Returns the trimmed string.

Example

var _ = require('lodash');
var result = _.trimEnd('__abc__', '_');

console.log(result);

Save the above program in tester.js. Run the following command to execute this program.

Command

\>node tester.js

Output

__abc
lodash_string.htm
Advertisements