References

String.trimEnd()

Leírás

A szöveg végéről a whitespace-ok eltüntetése.

Szintaxis

trimEnd()
 
trimRight()

Példa

const greeting = '   Hello world!   '
 
console.log(greeting)
// Expected output: "   Hello world!   ";
 
console.log(greeting.trimEnd())
// Expected output: "   Hello world!";
in this article
back to top