Write a method to replace all spaces in a string with '%20' js code example
Example 1: js replace all spaces
var replaced = str.replace(/ /g, '_');
Example 2: javascript string spaces replace with %20
string.replace()
var replaced = str.replace(/ /g, '_');
string.replace()