Answers for "javascript replace spaces with plus signs"

0

js replace space with plus

// replaces space with '+'
str = str.replace(/ /g, "+");
// or
str = str.split(' ').join('+');
Posted by: Guest on May-11-2021

Code answers related to "javascript replace spaces with plus signs"

Code answers related to "Javascript"

Browse Popular Code Answers by Language