Javascript Array push32(aLongWord)

Description

Javascript Array push32(aLongWord)


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



PreviousNext

Related