List of questions
Related questions
Question 97 - Certified JavaScript Developer I discussion
Given the following code:
document.body.addEventListener(' click ', (event) => {
if (/* CODE REPLACEMENT HERE */) {
console.log('button clicked!');
)
});
Which replacement for the conditional statement on line 02 allows a developer to correctly determine that a button on page is clicked?
A.
Event.clicked
B.
e.nodeTarget ==this
C.
event.target.nodeName == 'BUTTON'
D.
button.addEventListener('click')
Your answer:
0 comments
Sorted by
Leave a comment first