JSFiddle - React, Tailwind, and code Playground

by bryiantan

HTML

<div id="test">

</div>

JavaScript

var data = [
    {"latitude":"10.969470","longitude":"79.397572","speed":"0.00"},
    {"latitude":"8.754737","longitude":"78.191653","speed":"0.00"}]
         
$.each(data, function (key, data) {
    $( "#test" ).append(('Collection # ' + key)
    $.each(data, function (index, data) {
        console.log(index, data)
        $( "#test" ).append( index + ":" +  data + "<br/>");
    })
})