JavaScript usuń przestrzeń z dwóch stron łańcucha
const string = " this contains spaces ";
string.replace(/\s{2,}/g, '').trim()
Borma
const string = " this contains spaces ";
string.replace(/\s{2,}/g, '').trim()