Created
June 9, 2020 20:42
-
-
Save kabeer11000/7c87298758fe7824743695ce90e350e2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.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