We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2e4db7 commit 7647ab9Copy full SHA for 7647ab9
1-js/11-async/08-async-await/01-rewrite-async/solution.md
@@ -13,7 +13,7 @@ async function loadJson(url) { // (1)
13
throw new Error(response.status);
14
}
15
16
-loadJson('no-such-user.json')
+loadJson('https://javascript.info/no-such-user.json')
17
.catch(alert); // Error: 404 (4)
18
```
19
1-js/11-async/08-async-await/01-rewrite-async/task.md
@@ -15,6 +15,6 @@ function loadJson(url) {
});
.catch(alert); // Error: 404
20
0 commit comments