a function to slice space off the sides of a string code example
Example 1: javascript trim
var str=" I have outer spaces ";
var cleanStr=str.trim();//trim() returns string with outer spaces removed
Example 2: javascript whitespace strip
yourvariable.trim()