Here you can find the source of get(key)
Array.prototype.get = function(key){ if(this.getKeys().contains(key)) return this[key]; return null;// w ww. j a va2 s .c o m }
Array.prototype.get = function(idx) { return this[idx]; };
Array.prototype.get = function(index) { return this[index]; }; Array.prototype.set = function(index, value) { this[index] = value; };
Array.prototype.get = function (index) { if ((index < this.length) && (index >= 0)) { return this[index]; return false; };
Array.prototype.get = function (index) { if (index >= 0) return this[index]; else return this[this.length + index]; };
Array.prototype.get = function(index){ return this[index];
Array.prototype.get = function(position) { if(undefined!=position){ for (var i = 0; i < this.length; i++) { if (position == this[i].position) return this[i];