Node.js examples for Number:Decimal
Converts a number from decimal to hex value.
Number.prototype.dec2Hex = function () { return parseInt(this,10).toString(16); };