trim " from a string] js code example
Example 1: js remove space before string
var str = " Some text ";
str.trim();
// str = "Some text"
Example 2: javascript remove first space in string
//use trim() on your string. It removes first and last whitepsaces
let str = " aa bb ";
console.log(str.trim()); // "aa bb"