Here you can find the source of trim()
// courtesy of http://stackoverflow.com/questions/498970/how-to-trim-a-string-in-javascript String.prototype.trim = function() { leftTrimmed = this.replace(/^\s+/,''); return leftTrimmed.replace(/\s+$/,''); };
String.prototype.trim = function() { return this.replace(/^\s+|\s+$/g, ""); }; String.prototype.startsWith = function(t) { return this.indexOf(t) == 0; };
String.prototype.trim = function() { return this.replace(/^\s+|\s+$/g, ""); String.prototype.startsWith = function(prefix) { return this.indexOf(prefix) === 0; };
String.prototype.trim = function(){ var t = this.replace(/(^\s*)|(\s*$)/g,""); return t.replace(/(^\u3000*)|(\u3000*$)/g,""); }; function killErrors(){ return true;
String.prototype.trim = function(){ var t = this.replace(/(^\s*)|(\s*$)/g,""); return t.replace(/(^\u3000*)|(\u3000*$)/g,""); };
String.prototype.trim = function() { var t = this.replace(/(^\s*)|(\s*$)/g, ""); return t.replace(/(^\u3000*)|(\u3000*$)/g, ""); }; function killErrors() { return true;
String.prototype.trim = function() return this.replace(/^\s*|\s*$/g, ''); };
String.prototype.trim = function(){ return this.replace(/^\s+|\s+$/, ''); };
String.prototype.trim = function () { return this.replace(/^\s*/,"").replace(/\s*$/,"");
String.prototype.trim = function(){ return this.replace(/^[\s\xA0]+/, "").replace(/[\s\xA0]+$/, "") var myString = " hello world "; var myTrimmedString = myString.trim(); console.log("'" + myString + "'" + "\n" + "'" + myTrimmedString + "'");