I am using the prompt() function and asking for users to enter 2 numbers which I then want to calculate the sum and return the answer on an alert.
var numOne = prompt('Give me a number');
var numTwo = prompt('Give me another number');
alert('The sum of your numbers is ' + numOne+numTwo);
It seems that javascript is using the numbers as strings and just returning a result with the 2 numbers side by side in a string??