260

I am adding two numbers, but I don't get a correct value.

For example, doing 1 + 2 returns 12 and not 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>

7
  • 1
    What type of values are you expecting as input? Integers or decimals?
    – Zorayr
    Commented Jan 24, 2013 at 8:20
  • 2
    A text input value will be string and strings will always concatenate instead of addition
    – hank
    Commented Jan 24, 2013 at 8:27
  • 2
    A good write-up on converting is in this Answer.
    – akTed
    Commented Jan 24, 2013 at 8:29
  • 2
    Possible duplicate of How to add two strings as if they were numbers? Commented Jul 11, 2017 at 18:59
  • 3
    If you have an <input type="number">, you can simply get its .valueAsNumber property directly. Commented Aug 30, 2018 at 16:30

24 Answers 24

446

They are actually strings, not numbers. The easiest way to produce a number from a string is to prepend it with +:

var x = +y + +z;
13
  • 7
    out of curiousity (myself not a JavaScript programmer) (and I think this would improve the answer), what does the +-prefix do with strings? Commented Jan 24, 2013 at 8:10
  • 40
    The above code is a bit bizarre and will confuse less seasoned developers. The code will also fail JSLint for confusing use of '+'.
    – Zorayr
    Commented Jan 24, 2013 at 8:23
  • 3
    @phresnel: unary + operators
    – akTed
    Commented Jan 24, 2013 at 8:28
  • 16
    @AKTed: Actually I wanted to provoke elclanrs to describe it a bit within his answer. Of course I am not unable to do the google search myself; but it would (imo) improve the quality of the answer, especially because using prefix-+ for string conversion is pretty uncommon in other programming languages and might confuse newbies. (however, thanks for sharing the link) Commented Jan 24, 2013 at 8:37
  • 5
    I would discourage anyone from using this shortcut. I know that actually parsing a string into a number requires more code but at least the code clearly matches the intention.
    – Si Kelly
    Commented May 10, 2017 at 12:33
168

I just use Number():

var i = "2";  
var j = "3";  
var k = Number(i) + Number(j); // 5  
2
  • 4
    I kept making this mistake which always concats: var k += Number(i) Commented May 29, 2019 at 18:43
  • 1
    Using the Number method does work to convert strings to numeric values, but i and j are already numeric variables in this example. I'm surprised no one mentioned that in the decade this answer has existed. Commented Oct 25, 2023 at 19:29
32

You need to use javaScript's parseInt() method to turn the strings back into numbers. Right now they are strings so adding two strings concatenates them, which is why you're getting "12".

4
  • 3
    I'm not sure parseInt() is the best option here given that the OP's function is adding two user-entered "numbers", not two "integers".
    – nnnnnn
    Commented Jan 24, 2013 at 8:17
  • 3
    @nnnnnn I think, that could easily be amended with parseFloat should the OP provide more input.
    – Yoshi
    Commented Jan 24, 2013 at 8:25
  • 2
    @Yoshi - Yes, yes it could, but given that the answer doesn't actually say anywhere that parseInt() only returns integers, and doesn't explain any of parseInt()'s "quirks" - which could be a problem with user-entered data - I thought it was worth mentioning. (I didn't actually downvote or anything.)
    – nnnnnn
    Commented Jan 24, 2013 at 8:42
  • 1
    Yes, I had made an assumption that the input would be integers since they gave an example of 1 + 2, but you're right - parseFloat() may be better if they are just any 'numbers'.
    – mitim
    Commented Jan 24, 2013 at 9:23
24

Use parseInt(...) but make sure you specify a radix value; otherwise you will run into several bugs (if the string begins with "0", the radix is octal/8 etc.).

var x = parseInt(stringValueX, 10);
var y = parseInt(stringValueY, 10);

alert(x + y);

Hope this helps!

3
  • 7
    I'm not sure parseInt() is the best option here given that the OP's function is adding two user-entered "numbers", not two "integers".
    – nnnnnn
    Commented Jan 24, 2013 at 8:16
  • 2
    Unless he is expecting floating point values, I think using this approach still works great.
    – Zorayr
    Commented Jan 24, 2013 at 8:24
  • 3
    This is no longer a problem in ES6. The radix may be safely omitted. parseInt("012") works fine, returning 12. Of course, you still have to careful with things like [1,2].map(parseInt).
    – user663031
    Commented Sep 23, 2016 at 19:07
16

The following may be useful in general terms.

  • First, HTML form fields are limited to text. That applies especially to text boxes, even if you have taken pains to ensure that the value looks like a number.

  • Second, JavaScript, for better or worse, has overloaded the + operator with two meanings: it adds numbers, and it concatenates strings. It has a preference for concatenation, so even an expression like 3+'4' will be treated as concatenation.

  • Third, JavaScript will attempt to change types dynamically if it can, and if it needs to. For example '2'*'3' will change both types to numbers, since you can’t multiply strings. If one of them is incompatible, you will get NaN, Not a Number.

Your problem occurs because the data coming from the form is regarded as a string, and the + will therefore concatenate rather than add.

When reading supposedly numeric data from a form, you should always push it through parseInt() or parseFloat(), depending on whether you want an integer or a decimal.

Note that neither function truly converts a string to a number. Instead, it will parse the string from left to right until it gets to an invalid numeric character or to the end and convert what has been accepted. In the case of parseFloat, that includes one decimal point, but not two.

Anything after the valid number is simply ignored. They both fail if the string doesn’t even start off as a number. Then you will get NaN.

A good general purpose technique for numbers from forms is something like this:

var data=parseInt(form.elements['data'].value); //  or parseFloat

If you’re prepared to coalesce an invalid string to 0, you can use:

var data=parseInt(form.elements['data'].value) || 0;
8

Just add a simple type casting method as the input is taken in text. Use the following:

    var y = parseInt(document.getElementById("txt1").value);
    var z = parseInt(document.getElementById("txt2").value);
    var x = y + z;
8

This won't sum up the number; instead it will concatenate it:

var x = y + z;

You need to do:

var x = (y)+(z);

You must use parseInt in order to specify the operation on numbers. Example:

var x = parseInt(y) + parseInt(z); [final soulution, as everything us]
1
  • This should be the correct answer for addition and subtraction not the accepted one.
    – MR_AMDEV
    Commented Apr 20, 2019 at 18:27
6

Simple

var result = parseInt("1") + parseInt("2");
console.log(result ); // Outputs 3
0
4

This code sums both the variables! Put it into your function

var y = parseInt(document.getElementById("txt1").value);
var z = parseInt(document.getElementById("txt2").value);
var x = (y +z);
document.getElementById("demo").innerHTML = x;`
3
    <head>
        <script type="text/javascript">
            function addition()
            {
                var a = parseInt(form.input1.value);
                var b = parseInt(form.input2.value);
                var c = a+b
                document.write(c);
            }
        </script>
    </head>

    <body>
        <form name="form" method="GET">
        <input type="text" name="input1" value=20><br>
        <input type="text" name="input2" value=10><br>
        <input type="button" value="ADD" onclick="addition()">
        </form>
    </body>
</html>
1
  • 4
    Welcome to SO! Can you please explain a little bit more? Your answer is only code, so it might work, but the questioner (or other visitors!) might not understand why it works.
    – Chilion
    Commented Dec 11, 2015 at 9:32
3

Or you could simply initialize

var x = 0; ( you should use let x = 0;)

This way it will add not concatenate.

3

If Nothing works then only try this. This maybe isn't Right way of doing it but it worked for me when all the above failed.

 var1 - (- var2)
1
  • 1
    Nice and while still tricky, could be more acceptable than +x + +y. Commented Oct 6, 2022 at 10:29
2

You are missing the type conversion during the addition step...
var x = y + z; should be var x = parseInt(y) + parseInt(z);

 <!DOCTYPE html>

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

It's very simple:

<html>

    <body>
        <p>Click the button to calculate x.</p>
        <button onclick="myFunction()">Try it</button>
        <br/>
        <br/>Enter first number:
        <input type="text" id="txt1" name="text1">Enter second number:
        <input type="text" id="txt2" name="text2">
        <p id="demo"></p>

        <script>
            function myFunction() {
                var y = document.getElementById("txt1").value;
                var z = document.getElementById("txt2").value;
                var x = +y + +z;
                document.getElementById("demo").innerHTML = x;
            }
        </script>
    </body>
</html>
0
2

Try this:

<!DOCTYPE html>
<html>

    <body>
        <p>Add Section</p>

        <label>First Number:</label>
        <input id="txt1"  type="text"/><br />
        <label>Second Number:</label>
        <input id="txt2"  type="text"/><br />

        <input type="button" name="Add" value="Add" onclick="addTwoNumber()"/>
        <p id="demo"></p>

        <script>
            function myFunction() {
                document.getElementById("demo").innerHTML = Date();
            }

            function addTwoNumber(){
                var a = document.getElementById("txt1").value;
                var b = document.getElementById("txt2").value;

                var x = Number(a) + Number(b);
                document.getElementById("demo").innerHTML = "Add Value: " + x;
            }
        </script>
    </body>
</html>
0
2

If we have two input fields then get the values from input fields, and then add them using JavaScript.

$('input[name="yourname"]').keyup(function(event) {
    /* Act on the event */
    var value1 = $(this).val();
    var value2 = $('input[name="secondName"]').val();
    var roundofa = +value2+ +value1;

    $('input[name="total"]').val(addition);
});
2

This can also be achieved with a more native HTML solution by using the output element.

<form oninput="result.value=parseInt(a.valueAsNumber)+parseInt(b.valueAsNumber)">
  <input type="number" id="a" name="a" value="10" /> +
  <input type="number" id="b" name="b" value="50" /> =
  <output name="result" for="a b">60</output>
</form>

https://jsfiddle.net/gxu1rtqL/

The output element can serve as a container element for a calculation or output of a user's action. You can also change the HTML type from number to range and keep the same code and functionality with a different UI element, as shown below.

<form oninput="result.value=parseInt(a.valueAsNumber)+parseInt(b.valueAsNumber)">
  <input type="range" id="a" name="a" value="10" /> +
  <input type="number" id="b" name="b" value="50" /> =
  <output name="result" for="a b">60</output>
</form>

https://jsfiddle.net/gxu1rtqL/2/

1

You can do a precheck with regular expression wheather they are numbers as like

function myFunction() {
    var y = document.getElementById("txt1").value;
    var z = document.getElementById("txt2").value;
    if((x.search(/[^0-9]/g) != -1)&&(y.search(/[^0-9]/g) != -1))
      var x = Number(y)+ Number(z);
    else
      alert("invalid values....");
    document.getElementById("demo").innerHTML = x;
  }
2
  • 1
    Instead of regular expressions you could just use parseXX and check for NaN return.
    – hank
    Commented Jan 24, 2013 at 8:30
  • 1
    Validating user-entered data is always a good plan, but you still need to convert the input strings to numeric form before you can do a numeric addition.
    – nnnnnn
    Commented Jan 24, 2013 at 8:36
1

Use parseFloat it will convert string to number including decimal values.

 function myFunction() {
      var y = document.getElementById("txt1").value;
      var z = document.getElementById("txt2").value;
      var x = parseFloat(y) + parseFloat(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>
1
  <input type="text" name="num1" id="num1" onkeyup="sum()">
  <input type="text" name="num2" id="num2" onkeyup="sum()">
  <input type="text" name="num2" id="result">

  <script>
     function sum()
     {

        var number1 = document.getElementById('num1').value;
        var number2 = document.getElementById('num2').value;

        if (number1 == '') {
           number1 = 0
           var num3 = parseInt(number1) + parseInt(number2);
           document.getElementById('result').value = num3;
        }
        else if(number2 == '')
        {
           number2 = 0;
           var num3 = parseInt(number1) + parseInt(number2);
           document.getElementById('result').value = num3;
        }
        else
        {
           var num3 = parseInt(number1) + parseInt(number2);
           document.getElementById('result').value = num3;
        }

     }
  </script>
1
  • 3
    Add some explanation with answer for how this answer help OP in fixing current issue Commented May 30, 2017 at 5:33
1

Here goes your code by parsing the variables in the function.

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

Answer

Enter image description here

0

You can also write : var z = x - -y ; And you get correct answer.

<body>

<input type="text" id="number1" name="">
<input type="text" id="number2" name="">
<button type="button" onclick="myFunction()">Submit</button>

<p id="demo"></p>

    <script>
    function myFunction() {
        var x, y ;

        x = document.getElementById('number1').value;
        y = document.getElementById('number2').value;

        var z = x - -y ;

        document.getElementById('demo').innerHTML = z;
    }
    </script>
</body>
-4

An alternative solution, just sharing :) :

var result=eval(num1)+eval(num2);
3
  • 1
    Not a nice as using the jQuery arithmetic plugin, but I like it. Commented Mar 26, 2015 at 20:00
  • In principle, there’s nothing wrong with eval(), but you should never use eval with user data.
    – Manngo
    Commented Sep 19, 2020 at 1:17
  • 1
    @PaulDraper I think using a jQuery plugin for such a simple task is well and truly overkill, especially when JavaScript has a built-in solution.
    – Manngo
    Commented Sep 19, 2020 at 1:18
-4

Perhaps you could use this function to add numbers:

function calculate(a, b) {
  return a + b
}
console.log(calculate(5, 6))

Not the answer you're looking for? Browse other questions tagged or ask your own question.