Comment ajouter une méthode pour le simplifier

if (!Array.prototype.last){
    Array.prototype.last = function(){
        return this[this.length - 1];
    };
};
Wandering Wolf