MCPcopy Create free account
hub / github.com/coderarmy-notes/mern-stack-course / handleClick

Function handleClick

03JS/Day15/first.js:33–36  ·  view source on GitHub ↗
(e)

Source from the content-addressed store, hash-verified

31// console.log(parent.children);
32
33function handleClick(e){
34 e.target.textContent = "I am Clicked";
35 parent.removeEventListener('click',handleClick);
36}
37
38parent.addEventListener('click',handleClick)
39

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected