Possible Duplicate:
I have a nested data structure /how can I access a specific value?
How can I get the name and value of each object in Javascript only?
How can I get the name and value of each object in Javascript only? |
||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
There are two ways to access properties of objects:
Or, if you need to dynamically do it:
If you don't already have it as an object, you'll need to convert it. For a more complex example, let's assume you have an array of objects that represent users:
To access the age property of the second user, you would use Another example: That would access the 3rd element of an array named 2. Then, it would access 'key' in that array, go to the third element of that, and then access the property name As Amadan noted, it might be worth also discussing how to loop over different structures. To loop over an array, you can use a simple for loop:
To loop over an object is a bit more complicated. In the case that you're absolutely positive that the object is a plain object, you can use a plain
(Note that I've assumed whatever JS implementation you're using has |
|||||||||||
|
|
Try the JSON Parser by Douglas Crockford at github. You can then simply create a JSON object out of your String variable as shown below:
|
|||
|
|
|
Ok, here is the JS code:
|
|||
|
|
my solution
Approved code
result *You should use distinguish accessorizes when using [] method or dot notation
|
|||||||||||||
|