Nodejs Array Push pushArrayIfNotExist(element)

Here you can find the source of pushArrayIfNotExist(element)

Method Source Code

Array.prototype.pushArrayIfNotExist = function(element) { 
   if (!this.ifArrayInArray (element)) {
      this.push(element);//w ww.j  a va  2  s  .c  o m
   }
};

Related

  1. push_all(array)
    Array.prototype.push_all = function(array) {
        for (var index in array) {
            this.push(array[index]);
    
  2. pushMe(num)
    Array.prototype.pushMe = function (num) {
      this[this.length] = num;
      return this;
    };
    
  3. pushFront(value)
    Array.prototype.pushFront = function(value) {
      for(var i = this.length; i>0; i--){
        this[i] = this[i-1];
      this[0] = value;
    array = [1,2,3,4,5];
    array.pushFront(0);
    array.pushFront("Hello");
    ...
    
  4. akaPush(value)
    Array.prototype.akaPush=function(value){
      var len = this.length;
      this[len] = value;
      len++;
      this.length = len;
      return len;
    
  5. cutAndPush(f,xs)
    'use strict';
    Array.prototype.cutAndPush = function(f,xs) {
      var i = 0;
      while (i < this.length) {
        if (f(this[i])) {
          xs.push(this[i]);
          this.splice(i,1);
        } else {
          i++;
    ...
    
  6. pushRange(_items)
    Array.prototype.pushRange = function (_items) {
        for (var l = 0; l < _items.length; l++) {
            this.push(_items[l]);
    };
    
  7. pushRange(arr)
    Array.prototype.pushRange = function(arr) {
        this.push.apply(this, arr);
    };
    
  8. pushString(str)
    Array.prototype.pushString = function(str) {
      let data = encodeString(str);
      let ii = 0;
      let length = data.length;
      for (; ii < length; ++ii) {
        this.push(data[ii]);
      };
      return void 0;
    
  9. pushTab(tab)
    Array.prototype.pushTab = function(tab) {
      this.pushIfNotExist(tab, function(t) 
        {return t.title === tab.title && t.url === tab.url;});  
    };