String.prototype.trimEnd()
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since January 2020.
O método trimEnd()
remove espaços do final de uma string. trimRight()
é um apelido para este método.
Experimente
const greeting = " Hello world! ";
console.log(greeting);
// Expected output: " Hello world! ";
console.log(greeting.trimEnd());
// Expected output: " Hello world!";
Sintaxe
str.trimEnd(); str.trimRight();
Valor retornado
Uma nova string representando a string original sem espaços ao seu final (direita).
Descrição
Os métodos trimEnd()
/ trimRight()
retornam a string sem os espaços à direita dela. trimEnd()
ou trimRight()
não altera o valor da string original.
Aliasing
Para consistência com funções como String.prototype.padEnd
o nome padrão do método é trimEnd
. Entretanto, por razões de compatibilidade na web, trimRight
permanece como um apelido para trimEnd
. Em alguns motores isso significa:
String.prototype.trimRight.name === "trimEnd";
Exemplos
Usando trimEnd()
O exemplo a seguir mostra a string em caixa baixa ' foo'
:
var str = " foo ";
console.log(str.length); // retorna 8
str = str.trimEnd();
console.log(str.length); // retorna 6
console.log(str); // retorna ' foo'
Especificações
Specification |
---|
ECMAScript® 2025 Language Specification # sec-string.prototype.trimend |
Compatibilidade com navegadores
Report problems with this compatibility data on GitHubdesktop | mobile | server | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
trimEnd |
Legend
Tip: you can click/tap on a cell for more information.
- Full support
- Full support
- Uses a non-standard name.
- Has more compatibility info.