Answers for "javascript 2 3 in tostring space remove"

0

remove extra space in string js

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

javascript remove space from two side of string

const string = " this contains   spaces ";    
string.replace(/\s{2,}/g, '').trim()
Posted by: Guest on April-16-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language