var xhr = new XMLHttpRequest();
xhr.open('get', 'https://maps.googleapis.com/maps/api/geocode/json?address=1600+Amphitheatre+Parkway,+Mountain+View,+CA&key=AIzaSyDAPQB6C-l3-pTsW2DuGL2DYbx3CzVb3HM', false);
xhr.onload = function() {
console.dir(xhr);
console.dir(JSON.parse(xhr.response))
}
xhr.send();