Answers for "remove space at the end string js"

0

remove extra space in string js

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

remove space from string javascript

var str = "       Hello World!        ";
alert(str.trim());
Posted by: Guest on March-19-2020

Code answers related to "remove space at the end string js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language