Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created November 2, 2020 18:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/0d4fcf8b3c3a1cb06df38e1d50c47161 to your computer and use it in GitHub Desktop.
Save parzibyte/0d4fcf8b3c3a1cb06df38e1d50c47161 to your computer and use it in GitHub Desktop.
addScore(rows) {
this.score += Game.PER_SQUARE_SCORE * Game.COLUMNS * rows.length;
this.refreshScore();
}
refreshScore() {
this.$score.textContent = `Score: ${this.score}`;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment