js replace whitespace to one space code example
Example 1: js replace space
// replaces space with '_'
str = str.replace(/ /g, "_");
// or
str = str.split(' ').join('_');
Example 2: replace white spaces javascript
const name = 'Hi my name is Flavio'
name.replace(/\s/g, '') //HimynameisFlavio