Lets say you have a "create" button that dynamically creates a div, a start button, a stop button, & a p element within the div.
How can you add a function to the start buttons that bind to the p element of each div?
Would that be using the nth-child(4)? Example?
newPlay.addEventListener("click",function(event){
event.target.nth-child(4)
timer = setInterval(startTimer, 1000); }