We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88b9b1c commit 52c7999Copy full SHA for 52c7999
JavaScript/8-all.js
@@ -8,7 +8,8 @@ const promises = [
8
fetch(baseUrl + '/city'),
9
];
10
11
-Promise.all(promises)
+Promise.allSettled(promises)
12
+//Promise.all(promises)
13
.then((values) => {
14
console.log(values);
15
})
0 commit comments