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 down to a nested child by setting a public property the child has exposed. The child marks a field with the @api decorator so it becomes part of the child's API, and the parent assigns a value in markup or JavaScript. That one-way flow exists so the owner keeps control of the data and the child treats incoming values as read-only.