w3schools trim code example
Example: javascript trim
var str=" I have outer spaces ";
var cleanStr=str.trim();//trim() returns string with outer spaces removed
var str=" I have outer spaces ";
var cleanStr=str.trim();//trim() returns string with outer spaces removed