我有一个变量player.result
,它创建了6次。每次将其添加到player.participant.taxGame.totincome
中。
尽管从代码(这是应用程序的一部分)尚不清楚,但此行正常工作。因此,player.result
被巧妙地添加到player.participant.taxGame.totincome
了六次。
但是我想将player.result
的每个实例分别存储在一个变量中,该变量称为诸如player.round1
,player.round2
等。我尝试使用for循环来完成此操作。
当前看起来像这样:
player.participant.taxGame.totincome = player.participant.taxGame.totincome + player.result;
for ( i=1; i < 6; i++) {
player.rounds[i] = player.result
};
我要去哪里错了?
答案 0 :(得分:1)
将结果推到代表回合的数组中。
player.participant.taxGame.totincome = player.participant.taxGame.totincome + player.result;
player.rounds.push(player.result);