+ 1
Please i need help...
var num1 = prompt("1?"); var num2 = prompt("2?"); var sum = num1 + num2; alert(sum); I need to make a sum but only add the two numbers entered, please is there any solution?
1 Antwort
+ 5
If I understand your question correctly, all you would need to do is use the parseInt() function with each of the variables to convert them into integers, allowing you to add them together.
https://www.w3schools.com/jsref/jsref_parseint.asp