trim a javascript string both sides code example
Example 1: js remove space before string
var str = " Some text ";
str.trim();
// str = "Some text"
Example 2: javascript whitespace strip
yourvariable.trim()
var str = " Some text ";
str.trim();
// str = "Some text"
yourvariable.trim()