Skip to content
Advertisement

Why is my alert always showing the wrong information? (addition)


I’m currently writing some code using both HTML and Javascript. I’m building myself a mini Javascript calculator that can run simple additions using a HTML ‘GUI’ – if you take it that way. The code is below.

JavaScript

There are TWO input boxes in the middle of the page, which only accept numbers.
Underneath them are four radio buttons – Add, division, Multiply and Subtract. Now, You can see the javascript incorporated at the top of the page.

The problem I have is that when I run the page and want to add two numbers, the code works but the answer comes out as 0. I have tested this in chrome and this happens all the time.

Could Someone Possibly please help?

Advertisement

Answer

The problem is in how you’re trying to get the value from the input elements. In this code:

JavaScript

You’re trying to get the value property from the string "number1", which is undefined, then passing that to document.getElementById, which will return null, and then passing that to Number, which will return 0.

Try this this instead:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement