if(typeof(String.prototype.trim) === "undefined") { String.prototype.trim = function() { return String(this).replace(/^\s+|\s+$/g, ''); }; }
The trim function will now be available as a first-class function on your strings. For example:
" dog".trim() === "dog" //true