Here you can find the source of last()
/*/*from ww w. j a v a 2s .c o m*/ * Copyright 2012 IMOS * * The AODN/IMOS Portal is distributed under the terms of the GNU General Public License * */ Array.prototype.last = function() { if (this.length > 0) { return this[this.length - 1] } };
Array.prototype.last = function() { if(this.length>0) { return this[this.length-1]; } else { return null;
Array.prototype.last = function() { return this[this.length-1]; }; Array.prototype.last = function() { return this[0]; };
Array.prototype.last = function() { return this[this.length - 1]; }; Array.prototype.flatten = function() { return this.reduce(function(a, b) { return a.concat(b); }); };
Array.prototype.last = function() { return this[this.length-1];
Array.prototype.last = function(){ if(this.length > 0) return this[this.length-1]; return null; };
Array.prototype.last = function () { return this[this.length - 1]; };
Array.prototype.last = function () { return this[this.length - 1]; }; var Smart = Smart || {};
Array.prototype.last = function () { return this.pop(); };
Array.prototype.last = function() { if (this.length > 0) { return this[this.length - 1] };