https://www.youtube.com/watch?v=eQOLcKZIPzA
ββββconst parentCall=()=>{
ββββ alert("parent box call");
ββββ console.log("parent box call");
ββββ}
ββββconst childCall =()=>{
ββββ alert("child box call");
ββββ console.log("child box call");
ββββ // event.stopPropagation();
ββββ}
ββββparentdiv.addEventListener('click', parentCall, true);
ββββchilddiv.addEventListener('click', childCall, true);