JSFiddle - React, Tailwind, and code Playground
JavaScript
$(function(){
var data = {"msg":{"1":{"Name":"John Doe","Said":"Hello there"},"2":{"Name":"Jane King","Said":"Hello there"}},"errors":{"1":{"Person":"Jane King","type":"Wrong Screwdriver"},"2":{"Person":"John Doe","type":"Wrong Spanner"}}};
$.each(data.msg, function(index, value) {
alert(index + ': ' + value.Name);
});
});