回答編集履歴

1

result変数の入れ忘れを修正

2019/01/22 07:28

投稿

mather
mather

スコア6753

test CHANGED
@@ -3,6 +3,8 @@
3
3
 
4
4
 
5
5
  ```js
6
+
7
+ var result = {};
6
8
 
7
9
  json.forEach(x =>
8
10
 
@@ -20,7 +22,7 @@
20
22
 
21
23
  })
22
24
 
23
- )
25
+ );
24
26
 
25
27
  ```
26
28