标签: javascript typescript
我具有以下功能:
function addPointsToScore(player: { score: number; }, points: number): void { player.score += points; }
我不明白的地方:
在这种情况下,我是否传递了引用,或者此函数会因为不返回任何内容而无效?