JavaScript entfernen Platz von zwei Seite der String

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