I questioned this myself after noticing this question.
for (var i = 0; i < coords.length; ++i) {
this["marker"+i] = "some stuff";
}
- this is an array of strings with indexes "marker"+i.
how does interpreter handle such array naming? any consequences, such as waste of memory, etc?