I'm working on an ajax google maps script and I need to create dynamic variable names in a for loop.

Hard to explain but here's the code:

for (var i = 0; i < coords.length; ++i) {
    var marker+i = "some stuff";
}

What I want to get is: marker0, marker1, marker2 and so on. and I guess there is something wrong with marker+i

Firebug gives me this: missing ; before statement

link|improve this question

50% accept rate
I think you need to give a bit more context for a better answer. What do you mean by "count up var names"? Is marker defined somewhere outside the loop? – Zut Nov 24 '11 at 16:42
Ya - If you search for Javascript Arrays you will get your answers,tutorials- Sometimes its just difficult to name what you want. Fair enough. – ppumkin Nov 24 '11 at 16:48
feedback

2 Answers

up vote 8 down vote accepted

Use an array for this.

var markers = [];
for (var i = 0; i < coords.length; ++i) {
    markers[i] = "some stuff";
}
link|improve this answer
Hey i totally forgot to thank you! i got it working ;) – Philipp Bergmann Dec 8 '11 at 9:49
feedback

This will work:

for (var i = 0; i < coords.length; ++i) {
    this["marker"+i] = "some stuff";
}
link|improve this answer
3  
Why break out of the scope and throw it on the window??? That's just begging for problems later on. – Andrew Nov 24 '11 at 16:43
Perhaps, but my answer is correct. – Todd Ditchendorf Nov 24 '11 at 16:46
1  
Ya- it will work- just selecting a value later can be problematic. – ppumkin Nov 24 '11 at 16:50
Maybe. I can imagine a situation where you might actually need this. However, it's unclear whether the questioner has a legitimate need for this or realizes this is generally a bad idea. – Todd Ditchendorf Nov 24 '11 at 17:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.