此代码不能像我想的那样工作。
var csd = {large10x10: 0}
var nextitem = "large10x10";
buildings.push(nextitem,"black",a);
csd.nextitem += 1;
在csd.nextitem +=1
我希望它将1添加到csd.large10x10。我怎么做?或者我谷歌如何找到答案?
由于
答案 0 :(得分:2)
您需要访问其值为nextitem
而不是名为nextitem的属性。
在JavaScript中,这是用括号表示法完成的。
尝试
csd[nextitem] += 1;