how to replace all spaces in a string in javascript code example
Example 1: js replace space with underscore
var string = "my name";
string = string.replace(/ /g,"_");
Example 2: replacing each space in a string javascript
const name = 'Hi my name is Flavio'
name.replace(/\s/g, '')
Example 3: js replace all spaces
var replaced = str.replace(/ /g, '_');
Example 4: javascript replace all space
str = str.replace(/ /g, "_");
str = str.split(' ').join('_');
Example 5: javascript replace all spaces
var str = 'a b c';
var replaced = str.split(' ').join('_');