JavaScript entfernen Sie Platz von der Zeichenfolge
const removeSpaces = str => str.replace(/\s/g, '');
// Example
removeSpaces('hel lo wor ld'); // 'helloworld'
Batman