function test(){
    this[1]=1;
    console.log(this[1]);
}
test();
这段代码在Firefox 19和Chrome 25中运行,均输出:1。
但在Firefox Nightly 中却输出:undefine;请问这里this[1]的含义是什么?