I'm in the process of simplifying my code and I want to find out how feasible it is to do the following...

Example 1:
Code:
Q("a","blah");

// or a.Q("blah");
// to assign the value of "blah" to the variable a

alert(a); // -----> returns "blah"
Example 2:

Code:
Q("x",123 + 456);

// or x.Q(123+456)
...