How to convert a number to hexadecimal format and vice-versa in JavaScript?
Originally Published Here ๐!
Convert Number to Hexadecimal string
To convert a number to a hexadecimal string, you can use the toString() number method and pass 16 as the argument to the method in JavaScript.
const num = 1234;
const hexaDecimalStri...
melvingeorge-me.hashnode.dev1 min read