Nodejs Array Push push16(aWord)

Here you can find the source of push16(aWord)

Method Source Code

Array.prototype.push16 = function (aWord) {
   this.push((aWord >> 8) & 0xFF,
             (aWord     ) & 0xFF);/*from   w  ww.  j a  v  a 2 s  .  c om*/
};

Related

  1. push()
    Array.prototype.push = function () {
      for (var i=0; i<arguments.length; i++)
        this[this.length] = arguments[i];
      return this.length;
    
  2. push()
    Array.prototype.push = function()
      for (var i = 0; i < arguments.length; i++)
        this[this.length] = arguments[i];
      return arguments[i - 1];
    };
    
  3. push(data)
    Array.prototype.push = function(data) {
      this[this.length] = data;
      return this.length;
    };
    
  4. push(elem)
    Array.prototype.push = function(elem) {
      this[this.length] = elem;
      return ++this.length;
    };
    
  5. push(value)
    function Array() {
      this.length = 0
    Array.prototype.push = function(value) {
      this[this.length] = value
      this.length += 1
    Array.prototype.pop = function() {
      if (this.length > 0) {
    ...
    
  6. push16(num)
    Array.prototype.push16 = function (num) {
        this.push((num >> 8) & 0xFF,
                  (num     ) & 0xFF  );
    };
    
  7. push16(val)
    Array.prototype.push16 = function(val) {
      this.push(0x00FF & val);
      this.push(val >> 8);
      return this;
    };
    
  8. push16le(aWord)
    Array.prototype.push16le = function(aWord) {
       this.push((aWord     ) & 0xff,
                 (aWord >> 8) & 0xff);
    };
    
  9. push32(aLongWord)
    Array.prototype.push32 = function (aLongWord) {
       this.push((aLongWord >> 24) & 0xFF,
                 (aLongWord >> 16) & 0xFF,
                 (aLongWord >>  8) & 0xFF,
                 (aLongWord      ) & 0xFF);
    };