Answers for "trim spaces from end of text js"

1

trim nodejs sentence from spaces

newString = string.replace(/\s+/g,''); // "thiscontainsspaces"
Posted by: Guest on June-10-2021
10

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 "Javascript"

Browse Popular Code Answers by Language