公開:2024-11-15、更新:2024-11-15
第15話「Promise.resolveとreject」2 4ページ
マンガ
4:終わり、次はドキュメント
コンテンツ紹介
テキスト原稿
# 4p
1)
モフオ:
あと特殊な用途としては
thenを持った
オブジェクトを
Promiseで使える
ようにしてくれるよ
2)
const thenable = {
then: (func1, func2) => {
setTimeout(() => {
func1('実行');
}, 500);
}
};
Promise.resolve(thenable)
.then(res => {
console.log(res);
});
出力内容
実行