BenMo Posted March 30, 2007 Share Posted March 30, 2007 I'm trying to create an array of an object that I've defined. For example, let's say I've created the object "person": function person(firstname,lastname,age,eyecolor) { this.firstname=firstname this.lastname=lastname this.age=age } now I want to create an array of "person" objects so that I can do things like refer to thePerson[1].firstname, but I can't figure out how to combine the array and custom object syntax. For example, to make an array I go: var theArray = new Array() And this leaves no room for me to declare the array as an array of my objects, since the "new" keyword is already used up on the Array...I've tried things like: var thePeople = new person; thePeople[0].firstname = "bob" thePeople[1].firstname = "cindy" But this doesn't work. Any help? Thanks so much! Let me know if I'm not explaining the question well. It's probably something really obvious but I can't figure it out. Link to comment https://forums.phpfreaks.com/topic/44882-create-an-array-of-curstom-objects/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.