var person1 = {
firstName : "John",
lastName : "Doe",
age : 50,
eyeColor : "blue"
};
lot of object are there like above. i have tried get the object like below but not working.
var id = "1";
person+id.firstName + " is " + person+id.age + " years old.";
please guide me.