How do you take 2 numbers from the User with window.prompt and add them up without concatenating?
What I thought was:
var temp = window.prompt("Number1")
var temp2 = window.prompt("Number2")
var answer = temp + temp2;
document.write(answer);
but it only concatenates not adds.