I am trying to load a Local JSON file by jquery. the code works fine but the data are not available in array.
$.getJSON("/ajax/data/myjasonfile.json", function(json) {
console.log(json);
});
my console shows only
Object {data: Array[1]}
my sample json
{
"data": [
{
"number": "1234",
"nameOne": "Laten Thamn",
"type": "Fishing Vessels",
"flagName": "5467",
"buildDate":"12/08/2016"
}
]
}