在chrome的控制台中var test={a:{b:"123"}}console.log(test[c])//Uncaught ReferenceError: c is not defined
console.log(test.c)//输出undefinedconsole.log(test[c].b)//Uncaught ReferenceError: c is not definedconsole.log(test.c.b)//Cannot read property 'b' of undefined用.和中括号[]获取属性的差异是什么?
添加回答
举报
0/150
提交
取消