回答編集履歴
1
書き忘れ追加
answer
CHANGED
@@ -1,7 +1,9 @@
|
|
1
1
|
> const [] =
|
2
2
|
の[]の表記はどのようなものでしょうか??
|
3
3
|
|
4
|
+
destructuring assignment(分割代入??)というものです。
|
4
5
|
|
6
|
+
[分割代入 - MDN](https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment)
|
5
7
|
|
6
8
|
> また、promiseがすでにユーバーガ定義したオブジェクトならば、
|
7
9
|
promiseに対してall()というメソッドを使用したのか?と考えることもできます
|