141n Posted August 12, 2007 Share Posted August 12, 2007 Hey again folks - is there some different kind of way of adding together two mathematic values in JavaScript? Just wondered - I'm tryng to add two variables together as a number (i.e, like 2 + 2 = 4) but JS keeps spitting back two concatenated strings. So, if somebody was to enter 20 as $num1 and 40 as $num2 then they would get 2040 back, as opposed to 60 Any help for a floundering little n00b? Quote Link to comment Share on other sites More sharing options...
gurroa Posted August 12, 2007 Share Posted August 12, 2007 for example $count = $num1*1 + $num2*1; Quote Link to comment Share on other sites More sharing options...
emehrkay Posted August 12, 2007 Share Posted August 12, 2007 parseInt(int); Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.