Checklist progress
0/168Learned
JavaScript Developer
Study Checklist
Checklist progress
0/168Learned
Given a business requirement, utilize Events, event handlers, and propagation.
0/9
addEventListener syntax: event type, listener callback, and optional useCapture/options parameter
Learn this conceptEvent bubbling versus event capturing phases and the order events propagate through the DOM
Learn this conceptevent.stopPropagation() to halt event bubbling
Learn this conceptevent.preventDefault() to cancel the default browser action
Learn this conceptGiven a business requirement, evaluate and manipulate the DOM.
0/10
Given a scenario, utilize the Browser Dev Tools to investigate code behavior.
0/4
Given a scenario and requirements, utilize browser specific APIs.
0/10
Prepare for the Exam
Study Community
Ask questions and get the latest info from other JavaScript Developer studiers. 593 members and growing.
Custom events enable child components to notify parent components of actions or data changes. You create an event using the CustomEvent constructor and dispatch it from the child's JavaScript class. The parent listens for the event in its HTML template to react accordingly.