JSFiddle - React, Tailwind, and code Playground
JavaScript
var test = {
"status": "success",
"data": {
"title": "Testing",
"token": "77fl",
"questions": [{
"title": "How are you?",
"token": "UHGXI",
"kind": "multiple-choice",
"options": [{
"content": "Good",
"token": "tLAzWd",
"kind": "text"
}, {
"content": "bad",
"token": "8LRR3t",
"kind": "text"
}]
}]
}
};
alert(test.data.title);
$.each(test.data.questions,function(i,o){
alert(o.title + ' ' + o.kind);
});