Cómo agregar un método para que sea más simple
if (!Array.prototype.last){
Array.prototype.last = function(){
return this[this.length - 1];
};
};
Wandering Wolf