-
Notifications
You must be signed in to change notification settings - Fork 147
/
Copy pathrequire.html
31 lines (24 loc) · 913 Bytes
/
require.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!--
GBA ONLINE; GBA.JS.ORG; "Online GameBoy Advance Emulator"
Copyright (C) 2021-present AYVACS
Licensed under the MIT License (view LICENSE.md for more information)
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<meta name="google-adsense-account" content="ca-pub-9046612143275852">
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-9046612143275852" crossorigin="anonymous"></script>
</head>
<body>
<script>
fetch('assets/user_data/GamesList.json')
.then(response => response.json())
.then(jsonResponse => console.log(jsonResponse))
// outputs a javascript object from the parsed json
</script>
</body>
</html>