Here you can find the source of countCattle(kind)
Array.prototype.countCattle = function (kind) { var numKind = 0; for (var i = 0; i < this.length; i++) { if (this[i].type == kind) { numKind++/* w ww.jav a 2 s . c om*/ } } return numKind } var canyonCows = [ { name: "Bessie", type: 'cow', hadCalf: 'Burt'}, { name: "Bessie", type: 'bull', hadCalf: 'Burt'}, { name: "Bessie", type: 'cow', hadCalf: 'Burt'}, { name: "Bessie", type: 'cow', hadCalf: 'Burt'}, { name: "Bessie", type: 'calf', hadCalf: null}, ] console.log(canyonCows.countCattle('cow'))
Array.prototype.count = function (value) { var count = 0, i; for (i = 0; i < this.length; ++i) { if (this[i] === value) { ++count; return count; }; ...
Array.prototype.countCattle = function ( kind ){ var numKind = 0; for(var i = 0; i<this.length; i++){ if(this[i].type == kind){ numKind++; return numKind; }; ...
Array.prototype.countCattle = function(cattle){ var number = 0; for(var i = 0; i < this.length; i ++){ if(this[i].type == cattle){ number ++ ; return number; }; ...
Array.prototype.countCattle = function(kind) { var numKind = 0; for (var i = 0; i<this.length; i++) { if (this.type == kind){ numKind++; return numKind; }; ...
Array.prototype.countCattle = function(kind) { var numKind = 0; for (var i = 0; i < this.length; i++) { if (this[i].type == kind) { numKind++; return numKind; }; ...
Array.prototype.countCattle = function(kind) { var numKind = 0; for (i in this) { if (this[i]["type"] == kind) numKind++; return numKind; };
Array.prototype.calculateCount = function() { return this.length; }; var a = ["1", "2"]; var count = a.calculateCount(); console.log(count);
Array.prototype.countForBreeding = function() { var numToBreed = 0; for (var i = 0; i < this.length; i++) { if (this[i].noCalvesYet()) { numToBreed++; return numToBreed; }; ...
Array.prototype.countItem = function (item) { return this.filter(function (i) { return i === item }).length; };