fetch api has support es5 code example
Example: fetch
fetch('http://example.com/movies.json')
.then(response => response.json())
.then(data => console.log(data));
fetch('http://example.com/movies.json')
.then(response => response.json())
.then(data => console.log(data));