Javascript Number toHex(offset)

Description

Javascript Number toHex(offset)


////w  w w . j  a v  a  2 s  .c  o m
// A couple of methods that make working with numbers more easy.
//

Number.prototype.toHex = function (offset) {
  return this.toString(16).toUpperCase()
};



PreviousNext

Related