Javascript:Dec to hex / hex to dec
by Mohan[ Edit ] 2012-09-20 21:52:11
Dec to hex / hex to dec:
Amazingly people still try to do this computationally:
// number to hexadecimal
'0x' + Number( 15 ).toString( 16 );
// hexadecimal to number
parseInt( String( '8f3a5' ), 16 );
String repeat: