Answers for "delete every space at the end of string js"

3

remove extra space in string js

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

Code answers related to "delete every space at the end of string js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language