使用for循环创建单独的对象

时间:2019-06-06 05:19:29

标签: javascript for-loop

我有一个变量player.result,它创建了6次。每次将其添加到player.participant.taxGame.totincome中。

尽管从代码(这是应用程序的一部分)尚不清楚,但此行正常工作。因此,player.result被巧妙地添加到player.participant.taxGame.totincome了六次。

但是我想将player.result的每个实例分别存储在一个变量中,该变量称为诸如player.round1player.round2等。我尝试使用for循环来完成此操作。

当前看起来像这样:

player.participant.taxGame.totincome = player.participant.taxGame.totincome + player.result;
for ( i=1; i < 6; i++) {
    player.rounds[i] = player.result
};

我要去哪里错了?

1 个答案:

答案 0 :(得分:1)

将结果推到代表回合的数组中。

player.participant.taxGame.totincome = player.participant.taxGame.totincome + player.result;

player.rounds.push(player.result);