Nodejs Utililty Methods Array Push

List of utility methods to do Array Push

Description

The list of methods to do Array Push are organized into topic(s).

Method

push16le(aWord)
Array.prototype.push16le = function(aWord) {
   this.push((aWord     ) & 0xff,
             (aWord >> 8) & 0xff);
};
push32(aLongWord)
Array.prototype.push32 = function (aLongWord) {
   this.push((aLongWord >> 24) & 0xFF,
             (aLongWord >> 16) & 0xFF,
             (aLongWord >>  8) & 0xFF,
             (aLongWord      ) & 0xFF);
};
push32(num)
Array.prototype.push32 = function (num) {
    this.push((num >> 24) & 0xFF,
              (num >> 16) & 0xFF,
              (num >>  8) & 0xFF,
              (num      ) & 0xFF  );
};
push32le(aLongWord)
Array.prototype.push32le = function(aLongWord) {
   this.push((aLongWord     ) & 0xff,
             (aLongWord >> 8) & 0xff,
             (aLongWord >> 16) & 0xff,
             (aLongWord >> 24) & 0xff);
};
push8(aByte)
Array.prototype.push8 = function (aByte) {
   this.push(aByte & 0xFF);
};
push8(num)
Array.prototype.push8 = function (num) {
    this.push(num & 0xFF);
};
push8(val)
Array.prototype.push8 = function(val) {
  this.push(0xFF & val);
  return this;
};
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]);
pushAll(array)
Array.prototype.pushAll = function (array) {
    array.forEach(function(x) {this.push(x)}, this);    
};
pushAll(items)
Array.prototype.pushAll = function (items) {
    if (! Array.isArray (items)) {
        throw new TypeError("Argument must be an array");
    return this.push(...items);
};