回答編集履歴

1

1行で

2020/05/26 14:18

投稿

退会済みユーザー
test CHANGED
@@ -37,3 +37,15 @@
37
37
 
38
38
 
39
39
  ```
40
+
41
+ なんなら1行で
42
+
43
+ ```js
44
+
45
+ [[1,2,3,4], [5,6,7,8], [9,10,11,12], [13,14,15,16]]
46
+
47
+ .reduce((a,b)=>(b.reduce((c,d)=>(c.insertCell().textContent=d,c),a.insertRow()),a),list);
48
+
49
+
50
+
51
+ ```