Javascript Array push8(val)

Description

Javascript Array push8(val)


Array.prototype.push8 = function(val) {
  this.push(0xFF & val);//from w  w  w. j  a  va  2 s .  c  o m
  return this;
};



PreviousNext

Related