有谁知道为什么这会出错?我已经尝试了太久,我似乎无法弄清楚。它错误地显示“无法读取未定义的属性 0”,但已明确定义。 (或者我认为)
var categorySix = [["test"]["test2"],["testing"]["one"],["two"]["three"]];
document.write(categorySix[0][0]);
最佳答案
var categorySix = [["test","test2"],["testing","one"],["two","three"]];
您的语法已关闭。
关于javascript - "cannot read property 0 of undefined"二维数组,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6597934/