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