Skip to content

Instantly share code, notes, and snippets.

@danhollick
Last active February 4, 2020 11:19
Show Gist options
  • Save danhollick/8442ef3d1da42174f72cf9eee3bf3d5c to your computer and use it in GitHub Desktop.
Save danhollick/8442ef3d1da42174f72cf9eee3bf3d5c 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
}
//...
updateScores('normalTextScore', message.scores.normalText)
updateScores('largeTextScore', message.scores.largeText)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment