Cast a string as an refernce to an object. Please HELP

N

news.west.cox.net

Hopefully this can be done and it is easy...

I have some object like

var a = new Object();
a.name = "Title";
a.vars = new Array(6);
a.vars[0] = "4";
a.vars[1] = "22";
etc...

for about 18 objects.

If I have a string like
var str = "a";

how can I reference object data, like str.vars[0]???

Thanks....
 
M

Mick White

news.west.cox.net said:
Hopefully this can be done and it is easy...

I have some object like

var a = new Object();
a.name = "Title";
a.vars = new Array(6);
a.vars[0] = "4";
a.vars[1] = "22";
etc...

for about 18 objects.

If I have a string like
var str = "a";

how can I reference object data, like str.vars[0]???

Thanks....
window[str].vars[0] or window["a"].vars[0]

If I have understood you correctly.
Mick
 
N

news.west.cox.net

Thanks... works like a charm.

Mick White said:
news.west.cox.net said:
Hopefully this can be done and it is easy...

I have some object like

var a = new Object();
a.name = "Title";
a.vars = new Array(6);
a.vars[0] = "4";
a.vars[1] = "22";
etc...

for about 18 objects.

If I have a string like
var str = "a";

how can I reference object data, like str.vars[0]???

Thanks....
window[str].vars[0] or window["a"].vars[0]

If I have understood you correctly.
Mick
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
474,432
Messages
2,571,682
Members
48,796
Latest member
Greg L.

Latest Threads

Top