Forum: JavaScript programming
06-24-2002, 03:58 PM
|
|
Replies: 3
Views: 1,354
Quackhead,
Thanks for the reply. I...
Quackhead,
Thanks for the reply. I apologize, but I may not have made it clear in my example that the user will be entering the values into the form, so the 47 and 53 would be entered into the...
|
Forum: JavaScript programming
06-24-2002, 03:23 PM
|
|
Replies: 3
Views: 1,354
Addition in a form
I have developed the following script:
function calcBudget(){
a = CapBudget;
b = ExpBudget;
total = a + b;
return total;}
Example:
a = 47 b = 53
|