回答編集履歴

1

s

2019/08/16 13:35

投稿

Nippun
Nippun

スコア1147

test CHANGED
@@ -1 +1,15 @@
1
- [then](https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Global_Objects/Promise/then)
1
+ [then](https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Global_Objects/Promise/then)をつかってはどうでしょうか?
2
+
3
+
4
+
5
+ ```js
6
+
7
+ one()
8
+
9
+ .then(() => two())
10
+
11
+ .then(() => three())
12
+
13
+
14
+
15
+ ```