I want to use a function's variable value to build a variable in the function.
Here's what I got so far:
function foo(1a, 1b) {
var money = document.myform.1b;
}
So basically, if I pass in foo(aaa, bbb), I would like the variable money to be:
var money = document.myform.bbb;
1aand1bare not valid Identifiers.