Skip to main content
Version: 3.13.0

String.prototype.trimEnd()

The trimEnd() method removes whitespace from the end of a string and returns a new string, without modifying the original string. trimRight() is an alias of this method.

Syntax

trimEnd()

trimRight()

Return value

A new string representing str stripped of whitespace from its end (right side). Whitespace is defined as white space characters plus line terminators.

If the end of str has no whitespace, a new string is still returned (essentially a copy of str).

Aliasing

After String.prototype.trim() was standardized, engines also implemented the non-standard method trimRight. However, for consistency with String.prototype.pedEnd(), when the method got standardized, its name was chosen as trimEnd. For web compatibility reasons, trimRight remains as an alias to trimEnd, and they refer to the exact same function object. In some engines this means:

String.prototype.trimRight.name === "trimEnd";