Hello I am very new to JavaScript and need some guidance. I am trying to build a reference for people in a club. I started by creating an array like so:
var People = ['Adam', 'Bruce', 'Steve']
But now I want to add characteristics to Adam, for instance height, weight, age, etc.
I want to be able to access information regarding people in my array by something like:
alert(People.Adam.height);
How would I structure it so that objects in my array has unique characteristics?