JSFiddle - React, Tailwind, and code Playground

by naveen

JavaScript

var data = {
    "Location": [{
        "id": 0,
        "postcodeId": 85,
        "categoryId": 0,
        "location": "Enfield Island Village"},
    {
        "id": 0,
        "postcodeId": 44,
        "categoryId": 0,
        "location": "Isle of Dogs"},
    {
        "id": 0,
        "postcodeId": 269,
        "categoryId": 0,
        "location": "Isleworth"},
    {
        "id": 0,
        "postcodeId": 135,
        "categoryId": 0,
        "location": "Islington"}]
};

$.each(data.Location, function(index, datum) {
    $.each(datum, function(key, value) {
        alert(key + " : " + value.toString());
    });
});