Answers for "convert decimal to hex"

3

convert decimal to hex

// function to convert decimal to hexadecimal
function convertToHex(element,index,array) {
   return element.toString(16);
}

var decArray = new Array(23, 255, 122, 5, 16, 99);

var hexArray = decArray.map(convertToHex);
alert(hexArray); // 17,ff,a,5,10,63
Posted by: Guest on May-12-2021

Code answers related to "convert decimal to hex"

Code answers related to "Javascript"

Browse Popular Code Answers by Language