diff --git a/js/games.js b/js/games.js index 04f4cdae..bcb074f9 100644 --- a/js/games.js +++ b/js/games.js @@ -1,3 +1,5 @@ $.getJSON("/games.json", function (data) { - console.log(data); + for (let i = 0; i < data.length; i++) { + console.log(data[i].name); + } }) \ No newline at end of file