Syntax:
objectName[index].propertyName or objectName[index][“propertyName”] |
Example:
<!DOCTYPE html> <html> <body> <h2>Access json object array.</h2> <p id="testDemo"></p> <script> var textString = '{"students":[' + '{"firstName":"Sandy","lastName":"Sethi" },' + '{"firstName":"Roxy","lastName":"Malik" },' + '{"firstName":"Sunil","lastName":"Antil" }]}'; var obj = JSON.parse(textString); document.getElementById("testDemo").innerHTML = obj.students[0].firstName + " " + obj.students[0].lastName; </script> </body> </html> ]} |
Next Topic: How to use JSON object in java?
Previous Topic: How to create json object from string in javascript?