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
// to copy and paste in your browser console after successfully loading https://onemillioncheckboxes.com/ | |
let currentPosition; | |
function getRandomInt(min, max) { | |
return Math.floor(Math.random() * (max - min + 1)) + min; | |
} | |
function getUncheckedCheckbox() { | |
const uncheckedCheckboxes = document.querySelectorAll('input[type=checkbox]:not(:checked)'); |