Javascript Array push16(aWord)

Description

Javascript Array push16(aWord)


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



PreviousNext

Related