我通过参考吗?范围?

时间:2018-10-05 07:20:12

标签: javascript typescript

我具有以下功能:

function addPointsToScore(player: { score: number; }, points: number): void {
  player.score += points;
}

我不明白的地方:

在这种情况下,我是否传递了引用,或者此函数会因为不返回任何内容而无效?

0 个答案:

没有答案