Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to convert typescript number to Hex?

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?

like image 480
John Baird Avatar asked Sep 13 '16 15:09

John Baird


Video Answer


2 Answers

toString(16) is what you're looking for.

var g: number = 255;
alert(g.toString(16));
like image 90
McNultyyy Avatar answered Oct 13 '22 05:10

McNultyyy


As found on http://www.c-sharpcorner.com/UploadFile/5089e0/number-object-method-in-typescript-part-41/

number.toString(16);
like image 21
jayms117 Avatar answered Oct 13 '22 03:10

jayms117