Answers for "how to remove whitespace spaces start and end of string javascript"

0

remove whitespace with regex javascript

return str.replace(/\s/g, '');
Posted by: Guest on November-29-2020
13

js remove space before string

var str = "  Some text ";
str.trim();
// str = "Some text"
Posted by: Guest on May-27-2020

Code answers related to "how to remove whitespace spaces start and end of string javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language