Javascript Array LOWER()
LOWER()
Array.prototype.LOWER = function() { var i = this.length; while (--i >= 0) { this[i] = this[i].toLowerCase();//from w w w .j a v a 2 s . c o m } return this; };