comment supprimer l'espace de fuite dans la chaîne js
let string = " Your Text ";
string = string.trim(); // "Your Text"
// This gets rid of both starting and trailing whitespace
Eatable Chocolate