Jump to content

My strings keep concatenating - Not Adding together???


spires

Recommended Posts

Hi guys.

 

I'm doing a a simple equation, all I want to do is add to value together.

However, instead of adding the are concatenating. Both value are numeric so it should work fine, when I replace the variable with a static numeric number it works fine. but when I use the variable it keeps concatenating.

 

Any ideas?

 

My Code:

var joinedProduct=productarray[1]+productarray[2];
alert(joinedProduct);

 

productarray[1] = 60

productarray[2] = 60

output = 6060

not = 120

 

Thanks

Link to comment
Share on other sites

They are both numeric, but that doesn't mean that javascript sees them as numbers. It is seeing them as text.

 

Use this:

 

var joinedProduct= Number(productarray[1]) + Number(productarray[2]);

 

It should solve your problem.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.