This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<body oncontextmenu='return false;' > | |
<br><br><br> | |
<label id='status'></label> | |
<script> | |
const rows = 4; | |
const columns = 20; | |
let mines, remaining, revealed; | |
let status = document.getElementById('status'); |