Nodejs Array Push push_all(array)

Here you can find the source of push_all(array)

Method Source Code

Array.prototype.push_all = function(array) {
    for (var index in array) {
        this.push(array[index]);/* w  ww.  j  a v a 2s.  c o m*/
    }
}

Related

  1. pushAll(x)
    Array.prototype.pushAll = function (x) {
      for (var i = 0; i < x.length; i += 1) {
        this.push(x[i]);
    };
    
  2. pushArray(arr)
    Array.prototype.pushArray = function(arr) {
        if (arr) {
            for (var i = arr.length - 1; i >= 0; --i)
                this.push(arr[i]);
    
  3. pushArray(arr)
    Array.prototype.pushArray = function(arr) {
        this.push.apply(this, arr);
    };
    
  4. pushArray(arr)
    Array.prototype.pushArray = function(arr) {
      for (var i = 0; i < arr.length; ++i)
        this.push(arr[i]);
    
  5. pushArray(arr)
    Array.prototype.pushArray = function(arr) {
        this.push.apply(this, arr);
    };
    
  6. pushMe(num)
    Array.prototype.pushMe = function (num) {
      this[this.length] = num;
      return this;
    };
    
  7. 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");
    ...
    
  8. akaPush(value)
    Array.prototype.akaPush=function(value){
      var len = this.length;
      this[len] = value;
      len++;
      this.length = len;
      return len;
    
  9. 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++;
    ...