Last active
January 1, 2021 14:24
-
-
Save kabeer11000/cc52102326a956a333eacc4981cc8a14 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
//Getting Top Charts Data | |
function getData() { | |
$.getJSON("https://kabeer11000.github.io/JSONAPIS/music/top-chart.json", function (data) { | |
for (let i in data) { | |
//Got Data!, Console Logging Data name | |
console.log(data.name[i]); | |
} | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment