Nodejs Array Push push32(num)

Here you can find the source of push32(num)

Method Source Code

Array.prototype.push32 = function (num) {
    this.push((num >> 24) & 0xFF,
              (num >> 16) & 0xFF,
              (num >>  8) & 0xFF,
              (num      ) & 0xFF  );
};

Related

  1. push16(aWord)
    Array.prototype.push16 = function (aWord) {
       this.push((aWord >> 8) & 0xFF,
                 (aWord     ) & 0xFF);
    };
    
  2. push16(num)
    Array.prototype.push16 = function (num) {
        this.push((num >> 8) & 0xFF,
                  (num     ) & 0xFF  );
    };
    
  3. push16(val)
    Array.prototype.push16 = function(val) {
      this.push(0x00FF & val);
      this.push(val >> 8);
      return this;
    };
    
  4. push16le(aWord)
    Array.prototype.push16le = function(aWord) {
       this.push((aWord     ) & 0xff,
                 (aWord >> 8) & 0xff);
    };
    
  5. push32(aLongWord)
    Array.prototype.push32 = function (aLongWord) {
       this.push((aLongWord >> 24) & 0xFF,
                 (aLongWord >> 16) & 0xFF,
                 (aLongWord >>  8) & 0xFF,
                 (aLongWord      ) & 0xFF);
    };
    
  6. push32le(aLongWord)
    Array.prototype.push32le = function(aLongWord) {
       this.push((aLongWord     ) & 0xff,
                 (aLongWord >> 8) & 0xff,
                 (aLongWord >> 16) & 0xff,
                 (aLongWord >> 24) & 0xff);
    };
    
  7. push8(aByte)
    Array.prototype.push8 = function (aByte) {
       this.push(aByte & 0xFF);
    };
    
  8. push8(num)
    Array.prototype.push8 = function (num) {
        this.push(num & 0xFF);
    };
    
  9. push8(val)
    Array.prototype.push8 = function(val) {
      this.push(0xFF & val);
      return this;
    };