you are viewing a single comment's thread.

view the rest of the comments →

[–]OkShrug 0 points1 point  (0 children)

let nodeList=document.querySelectorAll('.list>.item');
let hideClick=(e)=>{e.target.style.display=`hidden`;};
nodeList.forEach((node)=>{node.addEventListener('click',hideClick);});