Computer Science, asked by sakshisakhare810, 3 months ago

A type of method to convert decimal number into its unique equivalent hexadecimal value​

Answers

Answered by cuteprincess200012
1

Answer:

hexString = yourNumber.toString(16);

And reverse the process with:

yourNumber = parseInt(hexString, 16);

Similar questions