Here you can find the source of getLastElement()
Array.prototype.getLastElement = function() { return this[this.length - 1]; };
Array.prototype.getLastIndexByKey = function(name) { var index = -1; for (var i = 0; i < this.length; i++) { if (this[i][name]) { index = i; return index;
Array.prototype.getLastItem = function(){ return this[this.length - 1]; Array.prototype.equals = function (targetArray) { if (!targetArray) return false; if (this.length != targetArray.length) return false; for (var i = 0, l=this.length; i < l; i++) { ...