The addition of two numbers and display the substring of a string using javascript | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

The addition of two numbers and display the substring of a string using javascript

20th Jul 2017, 9:33 AM
Shikha Vats
2 Answers
0
<html> <body> <script> var hexValue = "1"; var hexValue2= " 10"; var res = parseInt(num1) + parseInt(num2) ; hexValue + hexValue2; hexValue = "0x" + hexValue; hexValue2 = "0x" + hexValue2; hexValue = parseInt(hexValue , 16); hexValue2= parseInt(hexValue2 , 16); hexValue = hexValue + 0x010101; hexValue2 = hexValue2 + 0x010101; res = res.toString(16); document.write(hexValue); </script> </body> </html>
20th Jul 2017, 6:01 PM
neo seesor
neo seesor - avatar
- 1
Output
28th Mar 2019, 5:49 AM
Arvind Meena
Arvind Meena - avatar