how to add a space in replace in javascript code example
Example 1: replacing each space in a string javascript
const name = 'Hi my name is Flavio'
name.replace(/\s/g, '') //HimynameisFlavio
Example 2: js replace all spaces
var replaced = str.replace(/ /g, '_');