x
 
<html>
<body>
<script type="text/javascript">
Number.prototype.toHexString = function() {
  return this.toString(16);
};
var iNum = 15;
document.write(iNum.toHexString());
</script>
</body>
</html>