var staticUrl = 'https://ksjazzguitar.github.io/data/techs.json'; $.getJSON(staticUrl, function(data) { console.log("This is an example of a static JSON file being served by a web server.") console.log(data); }); var dynamicUrl = 'https://fcc-weather-api.glitch.me/api/current?lat=35&lon=139'; $.getJSON(dynamicUrl, function(data) { console.log("This is an example of a dynamic JSON file being served by a web server.") console.log(data); });