Nodejs Array Count countCattle( kind )

Here you can find the source of countCattle( kind )

Method Source Code

Array.prototype.countCattle = function ( kind ){
  var numKind = 0;
  for(var i = 0; i<this.length; i++){
    if(this[i].type == kind){
      numKind++;/*  w  w w.  ja v a2s  . c om*/
    }
  }
  return numKind;
};

Related

  1. count()
    function letterCapitalize(string) {
        var stringArray = string.split(" ");
        var sentence = stringArray.map(function(word) {
            var firstLetter = word[0];
            var otherLetters = word.slice(1);
            var capFirst = firstLetter.toUpperCase();
            return capFirst + otherLetters;
        })
        return sentence.join(" ");
    ...
    
  2. count(filter)
    Array.prototype.count = function(filter)
      var ct = 0;
      for (var i = 0; i< this.length; i++) {
        if(filter(this[i])){
          ct++;
      return ct;
    ...
    
  3. count(n)
    Array.prototype.count = function(n) {
      var count = 0;
      for (var i = 0; i < this.length; i++) {
        if (this[i] == n) count++;
      return count;
    function primeFactors(n) {
      var f = [];
    ...
    
  4. count(value)
    Array.prototype.count = function (value) {
      var count = 0, i;
      for (i = 0; i < this.length; ++i) {
        if (this[i] === value) {
          ++count;
      return count;
    };
    ...
    
  5. count(value)
    Array.prototype.count = function (value) {
      var count = 0, i;
      for (i = 0; i < this.length; ++i) {
        if (this[i] === value) {
          ++count;
      return count;
    };
    ...
    
  6. countCattle(cattle)
    Array.prototype.countCattle = function(cattle){
      var number = 0;
      for(var i = 0; i < this.length; i ++){
        if(this[i].type == cattle){
          number ++ ;
      return number;
    };
    ...
    
  7. countCattle(kind)
    Array.prototype.countCattle = function(kind) {
      var numKind = 0;
      for (var i = 0; i<this.length; i++) {
        if (this.type == kind){
          numKind++;
      return numKind;
    };
    ...
    
  8. countCattle(kind)
    Array.prototype.countCattle = function(kind) {
      var numKind = 0;
      for (var i = 0; i < this.length; i++) {
        if (this[i].type == kind) {
          numKind++;
      return numKind;
    };
    ...
    
  9. countCattle(kind)
    Array.prototype.countCattle = function (kind) {
      var numKind = 0;
      for (var i = 0; i < this.length; i++) {
        if (this[i].type == kind) {
          numKind++
      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'))