Javascript String downcase()
downcase()
String.prototype.downcase = function(){ return this.toLowerCase(); };
String.prototype.downcase = function () { return this.valueOf().toLowerCase(); };