mirror of
https://gitlab.com/skysthelimit.dev/selenite.git
synced 2025-06-15 18:12:08 -05:00
5 lines
131 B
JavaScript
5 lines
131 B
JavaScript
$.getJSON("/games.json", function (data) {
|
|
for (let i = 0; i < data.length; i++) {
|
|
console.log(data[i].name);
|
|
}
|
|
}) |