Here you can find the source of trim()
// Example: Augmenting Types // JavaScript allows us to augment the basic types of the language. console.log("'" + " a ".trim() + "'"); String.prototype.trim = function(){ return this.replace(/^\s+|\s+$/g, ''); }; //from w ww.j a v a2s . co m console.log("'" + " b ".trim() + "'"); // Because of the dynamic nature of JavaScript's prototypal inheritance, all // objects/values are imediatly endowed with the new methods, even objects/values // that where created before the new methods where created.
String.prototype.trim = function() { a = this.replace(/^\s+/, ''); return a.replace(/\s+$/, ''); };
String.prototype.trim = function () { "use strict"; return this.replace(/^\s+|\s+$/g, ''); };
String.prototype.trim = function() { var re = /^\s+|\s+$/g; return this.replace(re, "");
String._trimRE = new RegExp().compile(/^\s+|\s+$/g); String.prototype.trim = function() return this.replace(String._trimRE, "");
String.prototype.trim = function() { return this.replace(/^\s*/, "").replace(/\s*$/, ""); };
String.prototype.trim = function() var x=this; x=x.replace(/^\s*(.*)/, "$1"); x=x.replace(/(.*?)\s*$/, "$1"); return x;
var Firefox = (document.getElementById && !document.all); var MSIE = (-1 != navigator.userAgent.indexOf('MSIE')); String.prototype.trim=function(){ return this.replace(/^\s+|\s+$/g,""); }; function Redirect(url) parent.location=url; var Submitted = 0; function OnSubmit(form) if (Submitted) { return false; Submitted = 1; return true;
String.prototype.trim = function(){ return this.rTrim(this.lTrim());
String.prototype.trim = String.prototype.trim || function () { const str = this.replace(/^\s\s*/, ''); let i = str.length; for (let rgxp = /\s/; rgxp.test(str.charAt(--i));) { return str.substring(0, i + 1); }; ...