I have an issue with the variables + They both result me 310. But they both have to result me 13 because var1 = 3 and var2 = 10.
var var1 = document.getElementById("start").value;
var var2 = 10;
var3 = var1 + var2;
alert(var3);
And Its Html:
<input type="text" id="start" value="3" />