0

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

20th Jul 2017, 9:33 AM
Shikha Vats
3 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
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> Output kase kare check pc me
17th Jul 2025, 10:29 AM
Harsh Singh
Harsh Singh - avatar
- 1
Output
28th Mar 2019, 5:49 AM
Arvind Meena
Arvind Meena - avatar