DavidNHill / JSMinesweeper

Minesweeper player, solver and analyser in javascript
https://davidnhill.github.io/JSMinesweeper/
MIT License
95 stars 19 forks source link

fix: Use this.board instead of global board #5

Closed trungnt2910 closed 2 years ago

trungnt2910 commented 2 years ago

In EfficiencyHelper and FiftyFiftyHelper classes, some places contain usage of the global variable "board" instead of "this.board".

While this does not cause any apparent problems for the web page, it will cause problems if these classes are used alone.