(e)
| 31 | // console.log(parent.children); |
| 32 | |
| 33 | function handleClick(e){ |
| 34 | e.target.textContent = "I am Clicked"; |
| 35 | parent.removeEventListener('click',handleClick); |
| 36 | } |
| 37 | |
| 38 | parent.addEventListener('click',handleClick) |
| 39 |
nothing calls this directly
no outgoing calls
no test coverage detected