remove the whitespace from the beginning and end of the string and make the string lowercase in node 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