string replace space javascript code example
Example 1: js replace space with underscore
var string = "my name";
string = string.replace(/ /g,"_"); //returns my_name
Example 2: javascript string spaces replace with %20
string.replace()
var string = "my name";
string = string.replace(/ /g,"_"); //returns my_name
string.replace()