回答編集履歴
4
テキスト修正
test
CHANGED
@@ -1,4 +1,8 @@
|
|
1
|
+
こんにちは
|
2
|
+
|
3
|
+
|
4
|
+
|
1
|
-
|
5
|
+
`hoge()` がPromiseを返すのであれば、以下のようにすればよいかと思います。
|
2
6
|
|
3
7
|
|
4
8
|
|
3
テキスト修正
test
CHANGED
@@ -28,4 +28,4 @@
|
|
28
28
|
|
29
29
|
```
|
30
30
|
|
31
|
-
- **動作確認用CodePen:** [https://codepen.io/jun68ykt/pen/poJwdeb?editors=
|
31
|
+
- **動作確認用CodePen:** [https://codepen.io/jun68ykt/pen/poJwdeb?editors=1111](https://codepen.io/jun68ykt/pen/poJwdeb?editors=1111)
|
2
テキスト修正
test
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
|
7
7
|
async function test() {
|
8
8
|
|
9
|
-
const response = await hoge()
|
9
|
+
const response = await hoge()
|
10
10
|
|
11
11
|
|
12
12
|
|
1
テキスト修正
test
CHANGED
@@ -14,7 +14,7 @@
|
|
14
14
|
|
15
15
|
if (response[i] === 'ううう') {
|
16
16
|
|
17
|
-
return
|
17
|
+
return
|
18
18
|
|
19
19
|
}
|
20
20
|
|
@@ -24,7 +24,7 @@
|
|
24
24
|
|
25
25
|
console.log('これを表示させたくない')
|
26
26
|
|
27
|
-
}
|
27
|
+
}
|
28
28
|
|
29
29
|
```
|
30
30
|
|