Nodejs Array Push pushAll(array)

Here you can find the source of pushAll(array)

Method Source Code

Array.prototype.pushAll = function (array) {
    array.forEach(function(x) {this.push(x)}, this);    
};

Related

  1. push32le(aLongWord)
    Array.prototype.push32le = function(aLongWord) {
       this.push((aLongWord     ) & 0xff,
                 (aLongWord >> 8) & 0xff,
                 (aLongWord >> 16) & 0xff,
                 (aLongWord >> 24) & 0xff);
    };
    
  2. push8(aByte)
    Array.prototype.push8 = function (aByte) {
       this.push(aByte & 0xFF);
    };
    
  3. push8(num)
    Array.prototype.push8 = function (num) {
        this.push(num & 0xFF);
    };
    
  4. push8(val)
    Array.prototype.push8 = function(val) {
      this.push(0xFF & val);
      return this;
    };
    
  5. pushAll()
    Array.prototype.pushAll = function() {
        for (var a = 0;  a < arguments.length;  a++) {
            arr = arguments[a];
            for (var i = 0;  i < arr.length;  i++) {
                this.push(arr[i]);
    
  6. pushAll(items)
    Array.prototype.pushAll = function (items) {
        if (! Array.isArray (items)) {
            throw new TypeError("Argument must be an array");
        return this.push(...items);
    };
    
  7. pushAll(items)
    Array.prototype.pushAll = function(items) {
        if (!Array.isArray(items)) {
            throw new TypeError("Argument must be an array.");
        return this.push(...items);
    };
    
  8. pushAll(items)
    Array.prototype.pushAll = function (items) {
        if (!Array.isArray(items)) {
            throw new TypeError("Argument must be an array.");
        return this.push(...items);
    };
    
  9. pushAll(iterable)
    Array.prototype.pushAll = function (iterable) {
      for (const value of iterable) {
        this.push(value)