JavaScript html 蛇类游戏的计分器

JavaScript point counter for a html snake like game

初学JavaScript,找了很多网站,至今没找到解决方法

我正在做一个基于蛇的小游戏,谁能帮我用javascript和html,

做一个点数计数器

你可以在这里查看游戏!

https://github.com/LiquidSlime/Worm-game

我想用

完成
<div id="points"<h1></h1></div>
and javascript;
var element = document.getElementById("points")
**Code here**;

希望有人能帮帮我!

你可以用id点做一个span

<span id=points>? Points</span>

然后在js中改变innnerText

const pointElement = document.getElementById('points')

function updatePoints(points) {
  pointElement.innerText = points + ' Points'
}

然后运行更新点

updatePoints(1)

// If you want to load if from another varible

// get points from somewhere else

updatePoints(points)

当你想让它更新时,你的代码中会像这样

points++;
updatePoints(points)