If I have a JSON file named names.json with:
JSON
{\"employees\":[ {\"firstName\":\"Anna\",\"lastName\":\"Meyers\"}, {\"firstNam
For those sent here by Google after the fall of JQuery, use Fetch API
fetch("test.json").then(async (resp) => { const asObject = await resp.json(); console.log(asObject); })