Skip to content

Instantly share code, notes, and snippets.

@kabeer11000
Last active January 1, 2021 14:24
Show Gist options
  • Save kabeer11000/cc52102326a956a333eacc4981cc8a14 to your computer and use it in GitHub Desktop.
Save kabeer11000/cc52102326a956a333eacc4981cc8a14 to your computer and use it in GitHub Desktop.
//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