Jump to content

Create an array of curstom objects


BenMo

Recommended Posts

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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.