¿Cómo borro el intervalo para setInterval dentro de la función StartGame? (el actual no funciona)
document.getElementById("rndletter").addEventListener("click", function StartGame() ** { setInterval(function() ** { var result0 = String.fromCharCode(Math.floor(Math.random() * (122 - 97)) + 97); var result1 = String.fromCharCode(Math.floor(Math.random() * (122 - 97)) + 97); var result2 = String.fromCharCode(Math.floor(Math.random() * (122 - 97)) + 97); }, 2000); }); document.getElementById("stprndletter").addEventListener("click", function() { clearInterval(); }); <button id="rndletter">Start game</button> <button id="stprndletter">Stop game</button> <td style="text-align: center; color: blue; font-size: 150%;"> <b> <div id="result0"><br /> </div> </b></td> <td style="text-align: center; color: brown; font-size: 150%;"> <b> <div id="result1"><br /></div> </b></td> <td style="text-align: center; color: hotpink; font-size: 150%;"><b> <div id="result2"><br /></div> </b></td>Obtuve la respuesta después de leer los documentos, para cualquiera que busque lo mismo, hice esto: (agregué una ID nIntervID )
let nIntervId; document.getElementById("rndletter").addEventListener("click", function { nIntervId = setInterval(function() { var result0 = String.fromCharCode(Math.floor(Math.random() * (122 - 97)) + 97); var result1 = String.fromCharCode(Math.floor(Math.random() * (122 - 97)) + 97); var result2 = String.fromCharCode(Math.floor(Math.random() * (122 - 97)) + 97); document.getElementById("result0").innerText = result0; document.getElementById("result1").innerText = result1; document.getElementById("result2").innerText = result2; },2000);}); document.getElementById("stprndletter").addEventListener("click", function() { clearInterval(nIntervId); // release our intervalID from the variable nIntervId = null; }); });