// Add an abortable event listener to table
const controller = new AbortController();
const el = document.getElementById("outside");
el.addEventListener("click", modifyText, { signal: controller.signal } );
// Function to change the content of t2
function modifyText() {
const t2 = document.getElementById("t2");
if (t2.firstChild.nodeValue == "three") {
t2.firstChild.nodeValue = "two";
} else {
t2.firstChild.nodeValue = "three";
controller.abort(); // remove listener after value reaches "three"
}
}
как хобби хочу, но на хорошем уровне
if(на хорошем уровне){
сначала изучаем С, C++, Pascal (можете assembler прихватить краешком);
// это даст хорошую основу для продолжения (книга - Герберт шилдт С++ - написана проще некуда)
потом что хотите;
}
else{
что хотите;
}