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? Link to comment https://forums.phpfreaks.com/topic/64524-is-it-just-me/ Share on other sites More sharing options...
gurroa Posted August 12, 2007 Share Posted August 12, 2007 for example $count = $num1*1 + $num2*1; Link to comment https://forums.phpfreaks.com/topic/64524-is-it-just-me/#findComment-321659 Share on other sites More sharing options...
emehrkay Posted August 12, 2007 Share Posted August 12, 2007 parseInt(int); Link to comment https://forums.phpfreaks.com/topic/64524-is-it-just-me/#findComment-321954 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.