Day 25 of JavaScript 30 by Wes Bos worked on event listener concepts and introduced “once”. We started with three nested divs, selected them, and console logged the event. const divs = document.querySelectorAll('div'); function logText(e){ console.log(this.classList.value);
} If you click on the innermost div, all three divs will log a…