質問編集履歴

2

初心者マークの付与

2022/11/01 20:13

投稿

Kryptografin
Kryptografin

スコア1

test CHANGED
File without changes
test CHANGED
@@ -1,3 +1,4 @@
1
+
1
2
  ### 前提
2
3
  質問失礼いたします。
3
4
  はじめての質問ですので至らないところがあると思いますが、宜しくお願い致します。

1

`console.log()` による最終的な出力の追加

2022/11/01 20:11

投稿

Kryptografin
Kryptografin

スコア1

test CHANGED
File without changes
test CHANGED
@@ -77,8 +77,9 @@
77
77
  WholeKey += i[0];
78
78
 
79
79
  NewData[WholeKey] = DataValue;
80
- NewData[WholeKey].push(i[1])
80
+ NewData[WholeKey].push(i[1]);
81
81
  }
82
+ console.log(NewData);
82
83
 
83
84
  ```
84
85
 
@@ -94,8 +95,9 @@
94
95
  WholeKey += CurrentArr[0];
95
96
 
96
97
  NewData[WholeKey] = DataValue;
97
- NewData[WholeKey].push(CurrentArr[1])
98
+ NewData[WholeKey].push(CurrentArr[1]);
98
99
  }
100
+ console.log(NewData);
99
101
  ```
100
102
  for Each
101
103
  ```Javascript
@@ -108,8 +110,9 @@
108
110
  WholeKey += v[0];
109
111
 
110
112
  NewData[WholeKey] = DataValue;
111
- NewData[WholeKey].push(v[1])
113
+ NewData[WholeKey].push(v[1]);
112
114
  })
115
+ console.log(NewData);
113
116
  ```
114
117
  ### その他試したこと
115
118