Checklist progress
0/194Learned
Platform Developer
Study Checklist
Checklist progress
0/194Learned
Given a scenario, prevent user interface and data access security vulnerabilities.
0/11
Given a scenario, display and use custom user interface components, including Lightning components, Flow, and Visualforce.
0/15
Describe the use cases and best practices for Lightning Web Components, including the framework, benefits, and events.
0/13
Lightning Web Components programming model
Learn this conceptBenefits of Lightning Web Components
Learn this conceptWhen to use Lightning Web Components versus Aura
Learn this conceptParent-to-child communication via public properties
Learn this conceptChild-to-parent communication via custom events
Learn this conceptUnrelated Lightning web component communication
Learn this conceptLightning web component and Aura composition
Learn this conceptLightning web component lifecycle hooks
Learn this conceptLightning web component data retrieval and caching
Learn this conceptLightning web component rendering performance
Learn this conceptThird-party JavaScript in Lightning web components
Learn this conceptLightning web component actions versus JavaScript buttons
Learn this conceptGiven a scenario, implement Apex to work with various types of page components, including Lightning components, Flow, and Agentforce.
0/5
Prepare for the Exam
Study Community
Ask questions and get the latest info from other Platform Developer studiers.
A Lightning web component talks to its parent by dispatching a custom DOM event that travels up the containment hierarchy. The parent listens on the child and updates its own state: properties and public methods go down, events go up. CustomEvent is the recommended way to create those events because it behaves consistently across browsers and can carry a payload on the detail property.