Adding two numbers concatenates them instead of calculating the sum
P粉136356287
P粉136356287 2023-10-10 16:52:00
0
2
471

I'm adding two numbers but I'm not getting the correct value.

For example, executing 1 2 returns 12 instead of 3

What am I doing wrong in this code?


function myFunction() {
  var y = document.getElementById("txt1").value;
  var z = document.getElementById("txt2").value;
  var x = y + z;
  document.getElementById("demo").innerHTML = x;
}
<p>
  Click the button to calculate x.
  <button onclick="myFunction()">Try it</button>
</p>
<p>
  Enter first number:
  <input type="text" id="txt1" name="text1" value="1">
  Enter second number:
  <input type="text" id="txt2" name="text2" value="2">
</p>
<p id="demo"></p>


P粉136356287
P粉136356287

Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!