offline version v3


80 of 264 menu

trimEnd method

The trimEnd method removes whitespaces at the end of a string and returns a new string without changing the original string.

Syntax

string.trimEnd();

Example

Let's remove the extra spaces in the string ' abcde ':

let res = ' abcde '.trimEnd(); console.log(res);

As a result of executing the code, we will see that there are no spaces at the end of the string:

' abcde'

See also

  • the trimStart method
    that removes whitespaces at the start of a string
  • the trim method
    that removes whitespaces from ends of a string
enru