what does .trim() do in javascript 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 trim
var str = ' foo ';
str.trim(); //return string 'foo'
var str = 'foo ';
str.trim(); // return string 'foo'