JavaScript supprime l'espace de deux côtés de la chaîne

const string = " this contains   spaces ";    
string.replace(/\s{2,}/g, '').trim() 
Borma