Answers for "remove space from twor string javascript"

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
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 "remove space from twor string javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language