Como remover o espaço à direita em String JS
let string = " Your Text ";
string = string.trim(); // "Your Text"
// This gets rid of both starting and trailing whitespace
Eatable Chocolate