Javascript Array push8(aByte)

Description

Javascript Array push8(aByte)



Array.prototype.push8 = function (aByte) {
   this.push(aByte & 0xFF);//from ww w .j  a  va2s . c o  m
};



PreviousNext

Related