JSFiddle - React, Tailwind, and code Playground
by jamey777
JavaScript
var article = {
"text": "this is my article text blah blah",
"date": "some timestamp",
"author": "joe cool",
"comments": [
{
"text": "my first comment",
"author": "billy smith"
},
{
"text": "my first comment",
"author": "will smith"
}
]
};
alert(article.comments[1].author);