<body>
<div></div>
<div></div>
<div></div>
<div></div>
</body>
if you bind all the div events under the body and point to the bound div itself, ask the seniors to explain that the native events will
var a = document.getElementsByTagName("body")[0].children
for(let i =0;i<a.length;iPP){
a[i].addEventListener("click",function(){
console.log(this)
})
}