The title is confusing, but the best way I could think of to describe the challenge at hand. Here's the scenario in a nutshell:
//
var A = 325 (result of a server-side query)
var NUMBER = 'A' (value passed from a previous page)
//
The Goal is to have var NUMBER = 325 (as the value from var A)
Can anyone think of a way to use variable NUMBER's value of "A" to assign it a new value of 325 by reading from variable A?
//
var A = 325 (result of a server-side query)
var NUMBER = 'A' (value passed from a previous page)
//
The Goal is to have var NUMBER = 325 (as the value from var A)
Can anyone think of a way to use variable NUMBER's value of "A" to assign it a new value of 325 by reading from variable A?