回答編集履歴

3

比較変数名変更

2022/09/02 18:11

投稿

shiracamus
shiracamus

スコア5406

test CHANGED
@@ -3,7 +3,7 @@
3
3
  ```JavaScript
4
4
  do {
5
5
  ...
6
- } while (userResponse.response_metadata.next_cursor);
6
+ } while (response.response_metadata.next_cursor);
7
7
  ```
8
8
 
9
9
  とか
@@ -11,7 +11,7 @@
11
11
  ```JavaScript
12
12
  while (true) {
13
13
  ...
14
- if (!userResponse.response_metadata.next_cursor) break;
14
+ if (!response.response_metadata.next_cursor) break;
15
15
  }
16
16
  ```
17
17
 

2

説明追記

2022/09/02 18:09

投稿

shiracamus
shiracamus

スコア5406

test CHANGED
@@ -1,3 +1,5 @@
1
+ 1回目は実行するということならば、
2
+
1
3
  ```JavaScript
2
4
  do {
3
5
  ...

1

比較変数変更

2022/09/02 18:07

投稿

shiracamus
shiracamus

スコア5406

test CHANGED
@@ -1,7 +1,7 @@
1
1
  ```JavaScript
2
2
  do {
3
3
  ...
4
- } while (next_cursor);
4
+ } while (userResponse.response_metadata.next_cursor);
5
5
  ```
6
6
 
7
7
  とか
@@ -9,7 +9,7 @@
9
9
  ```JavaScript
10
10
  while (true) {
11
11
  ...
12
- if (!next_cursor) break;
12
+ if (!userResponse.response_metadata.next_cursor) break;
13
13
  }
14
14
  ```
15
15