公開:2024-11-15、更新:2024-11-15
第13話「Promiseのstaticメソッド」3 8ページ
マンガ
8:終わり、次はドキュメント
コンテンツ紹介
テキスト原稿
# 8p
1)
ミア:
rejectが
ある場合は?
2)
モフオ:
こちらも
書いてみよう
-----
3)
rejectがある時
(async function() {
const array = [
timer(500, 'resolve'),
timer(600, 'reject'),
timer(700, 'resolve')
];
try {
const res = await Promise.all(array);
console.log('res:', res);
} catch(error) {
console.log('error:', error);
}
})();
出力内容
error: 600 拒否
-----
4)
モフオ:
Promiseの
他の静的メソッドは
次に話すよ