You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
featuredImageAlt: A p5.js logo with musical notes above it has arrows labeled with HTTP methods pointing to a cloud labeled “Internet”. Above the cloud is an icon that reads “http\://”. Arrows point from the cloud to a pink cube labeled “Web Server” with the Node.js logo above it.
8
8
relatedContent:
9
9
references:
10
-
- en/p5/preload
10
+
- en/p5/async_await
11
11
- en/p5/loadjson
12
12
authors:
13
13
- Layla Quiñones
@@ -197,9 +197,8 @@ let songs;
197
197
198
198
asyncfunctionsetup() {
199
199
createCanvas(400, 400);
200
-
// Fetch the list of songs from the server
201
-
const response = await fetch('/songs');
202
-
songs = await response.json();
200
+
// Fetch the list of songs from the server via loadJSON
0 commit comments