So fügen Sie eine Methode hinzu, um sie einfacher zu machen
if (!Array.prototype.last){
Array.prototype.last = function(){
return this[this.length - 1];
};
};
Wandering Wolf