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
// Query the reroll and result DOM nodes | |
const reroll = document.querySelector(".css-cn6g20-IconButton") | |
const result = document.querySelector(".css-cdb02n") | |
const results = [] | |
const numRolls = 2000; // Number of rolls to make | |
let i = 0; | |
// Run a timer every 5 seconds that saves the previous roll and | |
// rolls the dice again | |
const interval = setInterval(() => { |