我有两个像这样定义的数组
var theory= new Array();
var first;
var second;
function arrTheory () {
this.first= first;
this.second= second;
}
var subject= new Array();
...
function arrSubject () {
...
this.theory= theory;
...
}
我如何访问更大的理论数组中的元素?我试过了
subject[0].theory.first;
但它不起作用
subject[0].name;
这是大阵列的另一个领域工作正常。我错过了什么?