質問編集履歴
2
test
CHANGED
File without changes
|
test
CHANGED
@@ -2,9 +2,9 @@
|
|
2
2
|
|
3
3
|
|
4
4
|
|
5
|
-
console.log([4][0])など具体的な値が入っている場合はエラーが出ないのですが、
|
5
|
+
console.log(ldt[4][0])など具体的な値が入っている場合はエラーが出ないのですが、
|
6
6
|
|
7
|
-
console.log([i][0])としてforで回すとエラーが出ます。
|
7
|
+
console.log(ldt[i][0])としてforで回すとエラーが出ます。
|
8
8
|
|
9
9
|
TypeError: Cannot read property '0' of undefined
|
10
10
|
|
1
配列名を書き忘れていました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -40,7 +40,7 @@
|
|
40
40
|
|
41
41
|
for(var i=1;i<low;i++){
|
42
42
|
|
43
|
-
** console.log([i][0])
|
43
|
+
** console.log(ldt[i][0])
|
44
44
|
|
45
45
|
}**
|
46
46
|
|
@@ -68,7 +68,7 @@
|
|
68
68
|
|
69
69
|
|
70
70
|
|
71
|
-
** console.log([4][0])**
|
71
|
+
** console.log(ldt[4][0])**
|
72
72
|
|
73
73
|
}
|
74
74
|
|