Nodejs Array Odd odd()

Here you can find the source of odd()

Method Source Code

Array.prototype.odd = function(){
   var newArr = [];
   for (var i of this){
      if (i % 2 !== 0){
         newArr.push(i);/* ww  w  .  ja  v a2s  .c  o  m*/
      }
   }
   return newArr;
}

Related

  1. odd()
    Array.prototype.odd = function(){
        return this.filter((element) => element % 2 !== 0);
    
  2. odd()
    Array.prototype.odd = function () { 
      return this.filter(function(value) { 
        return value % 2 != 0; 
      }); 
    
  3. odd()
    Array.prototype.odd = function () {
      return this.filter(function (e) {
        return e % 2;
      });
    };
    
  4. odd()
    Array.prototype.odd = function () {
      return this.filter((item) => {
        return item % 2 === 1;
      });
    };
    
  5. odd()
    Array.prototype.odd = function()
      var ret = new Array();
      this.forEach(function(a) {
        if (0 != a % 2) {
          ret.push(a);
      });
      return ret;
    ...
    
  6. odd()
    Array.prototype.odd = function(){
      return this.filter(x=> x%2 == 1?x:'');
    
  7. odd/even()
    Array.prototype.odd = function(){
         return this.filter(value => value % 2 == 1)
    };
    Array.prototype.even = function(){
         return this.filter(value => value % 2 == 0) 
    };
    const numbers = [1,2,3,4,5,6,7,8];
    console.log(numbers.odd());
    console.log(numbers.even());
    ...
    
  8. odds()
    Array.prototype.odds = function () {
      var a = [], o = this;
      for (var i = 0; i < o.length; i++) {
        if (i%2==0) a.push(o[i]);
      return a;
    };