Basically I want to create one large object of many object in JavaScript. Something like:
var objects = {}
for (x)
objects.x = {name: etc}
Any ideas?
|
Basically I want to create one large object of many object in JavaScript. Something like:
Any ideas? |
|||||||||||||
|
|
|||
An actual implementationPopulate a container object with 100 other objects.
TEST THE Results - iterate and display objects...
Output is like
etc... |
||||
|
|
|
Try this
|
|||
|
|
|
From what I'm understanding you would like to save multiple
as for whats in the brackets of the for loop that all depends on what you are looking to do exactly. |
|||||
|