JSFiddle - React, Tailwind, and code Playground

by Brent Coder

JavaScript

(function() {
    var json = {"data":{"item":[{"@id":"7","fromMemberID":"7","FromMember":"brent","notificationsType":"event","notificationsDesc":"A new event (Test Event Thursday, 16 September 2010) has been created.","notificationsDate":"16 Sep 2010","notificationsTime":"00:02:18"},{"@id":"8","fromMemberID":"7","FromMember":"david","notificationsType":"event","notificationsDesc":"A new event (Test Event Thursday, 16 September 2010) has been created.","notificationsDate":"16 Sep 2010","notificationsTime":"08:26:24"}]}};
    
    var i;
    for(i=0; i<json.data.item.length; i++)
    {
        alert(json.data.item[i].FromMember);
        alert(json.data.item[i].notificationsType);
        alert(json.data.item[i].notificationsDesc);
    }
})();