It is showing 60 + 5 as 605 instead of 65
g = document.getElementById("height1").value * 12;
alert(g); <---- This is showing 60
h = document.getElementById("height2").value;
alert(h); <---- This is showing 5
b = g+h;
alert(b); <---- This is showing 605
Any ideas