https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API
fetch("http://www.example.com").then(res => res.json()).then(json => {})
fetch(url, { method: “POST”, body: “a body” })
https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API
Only big downside is no IE11 support but thankfully I don't have to worry about that so much these days.