Javascript Array LOWER()

Description

Javascript Array 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;
};



PreviousNext

Related