Here you can find the source of trim()
"use strict";//Just don't cross the streams!! String.prototype.trim = function () { return this.replace(/^\s*/, "").replace(/\s*$/, ""); }
String.prototype.trim = function() { return this.replace(/^\s|\s$/, ""); };
String.prototype.trim = function() { return this.replace(/^s+|s+$/, ''); function validate(input) { console.log(1);
String.prototype.trim = function() { return this.replace(/^\s+|\s+$/gi, "") function get(id) { return document.getElementById(id)
String.prototype.trim||(String.prototype.trim=function(){ return this.replace(/^\s+|\s+$/g,"")} );
String.prototype.trim = function() { return this.replace(/^\s+/,'').replace(/\s+$/,''); }; console.log(JSON.stringify(" foo ".trim()));
String.prototype.trim = function(){ return this.replace(/(^\s+)|(\s+$)/g,'') var a = " bala bala " console.log(a); console.log(a.trim());
String.prototype.trim = function() { return this.replace(/(^\s*)|(\s*$)/g, ""); }; String.prototype.isEmpty = function(){ return this.trim()==""; };
String.prototype.trim = function() { return this.replace(/^\s+|\s+$/g, ''); }; String.prototype.isEmpty = function() { return this.trim() == ''; };
String.prototype.trim = function() { return this.replace(/^\s+|\s+$/g, ""); }; String.prototype.startsWith = function(t) { return this.indexOf(t) == 0; };