回答編集履歴

1

ミスがあったため修正。

2020/02/13 04:51

投稿

kei344
kei344

スコア69606

test CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ```js
4
4
 
5
- ( array[i] || [] ).push( 'add' );
5
+ // ( array[i] || [] ).push( 'add' );
6
+
7
+ // 代入していなかった・・・。
8
+
9
+ ( array[i] || ( array[i] = [] ) ).push('add');
6
10
 
7
11
  ```