I have googled for the past hour and can't find anything on typescript conversion of number to hex. The javascript solutions don't work.
How can I turn 100 into its hex representation using typescript?
toString(16)
is what you're looking for.
var g: number = 255;
alert(g.toString(16));