Here you can find the source of take(howMany, f)
Array.prototype.take = function(howMany, f){ var counter = 0; var i = 0;//www .ja v a 2 s . c om var addIt = false; var newArray = []; while(counter < howMany && i < this.length){ if(f == undefined){ addIt = true; }else{ if(f(this[i]) == true){ addIt = true; } } if(addIt){ newArray.push(this[i]); counter++; addIt = false; } i++; } return newArray; };
Array.prototype.take = function (c) { return this.slice(0, c); };
Array.prototype.take = function (count) { var result = new Array(); for (var i = 0; i < count && i < this.length; i++) result.push(this[i]); return result; };
Array.prototype.take = function(elements) { if (elements > this.length) { return []; } else { return this.slice(0, elements)
Array.prototype.take = function (length) { var result = new Array(); length = Math.min(this.length, length); for (var i = 0; i < length; i++) result.push(this[i]); return result; };
Array.prototype.take = function (n) { return this.splice(0, n); };
Array.prototype.take = function(x){ return this.slice(0,x)
Array.prototype.takeSample = function () { var n = Math.round((Math.random() * (this.length - 1))); return this[n]; };