Answers for "remove space to make one string javascript"

31

remove spaces in a string js

str.replace(/\s+/g, '')
Posted by: Guest on April-29-2020
3

remove extra space in string js

newString = string.replace(/\s+/g,' ').trim();
Posted by: Guest on May-28-2020

Code answers related to "remove space to make one string javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language