Skip to content

Instantly share code, notes, and snippets.

@danhollick
Created February 4, 2020 11:18
Show Gist options
  • Save danhollick/8c69a22d70d20b169c4d8da7a307ffbb to your computer and use it in GitHub Desktop.
Save danhollick/8c69a22d70d20b169c4d8da7a307ffbb to your computer and use it in GitHub Desktop.
update scores
function updateScores(id, score) {
const element = document.getElementById(id)
element.className = score
element.textContent = score
return element
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment