Skip to content

Instantly share code, notes, and snippets.

@kabeer11000
Created June 9, 2020 20:42
Show Gist options
  • Save kabeer11000/7c87298758fe7824743695ce90e350e2 to your computer and use it in GitHub Desktop.
Save kabeer11000/7c87298758fe7824743695ce90e350e2 to your computer and use it in GitHub Desktop.
$.get("https://kabeer11000.github.io/sample-response/CDNs/cdn-response.json", function(data, status){
//Log Total Packages to The Console
console.log('Total Packages : '+data.TotalLibs);
for(let i=;i<data.Libs.length;i++){
//Log name of each Library to the Console
console.log(data.Libs[i].name);
}
//Log Response Status to the console
console.log("Status: " + status);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment