<?xml version="1.0" encoding="UTF-8" ?><!-- generator=Zoho Sites --><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><atom:link href="https://www.peoplewoo.com/blogs/author/peoplewoo/feed" rel="self" type="application/rss+xml"/><title>Peoplewoo - Blogs by Peoplewoo</title><description>Peoplewoo - Blogs by Peoplewoo</description><link>https://www.peoplewoo.com/blogs/author/peoplewoo</link><lastBuildDate>Fri, 10 Apr 2026 15:55:47 +0530</lastBuildDate><generator>http://zoho.com/sites/</generator><item><title><![CDATA[Div Tag, Onclick & Data Binding in Lightning Studio | Peoplewoo Skills]]></title><link>https://www.peoplewoo.com/blogs/post/div-tag-onclick-data-binding-in-lightning-studio-peoplewoo-skills</link><description><![CDATA[ In Lightning Web Components (LWC), your UI is built using HTML templates. Three of the most important concepts every beginner must understand are: The ]]></description><content:encoded><![CDATA[<div class="zpcontent-container blogpost-container "><div data-element-id="elm_VSFK6u_qTROrUlbkwFcnHQ" data-element-type="section" class="zpsection "><style type="text/css"></style><div class="zpcontainer-fluid zpcontainer"><div data-element-id="elm_AX1H_FWwTISZjTAoLhORpg" data-element-type="row" class="zprow zprow-container zpalign-items- zpjustify-content- " data-equal-column=""><style type="text/css"></style><div data-element-id="elm_QmO3R2StSMOPjvWG4mBR2w" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-8 zpcol-sm-12 zpalign-self- "><style type="text/css"></style><div data-element-id="elm_zt8AQ9V5TPuN5ANXWKA81A" data-element-type="image" class="zpelement zpelem-image "><style> @media (min-width: 992px) { [data-element-id="elm_zt8AQ9V5TPuN5ANXWKA81A"] .zpimage-container figure img { width: 730px ; height: 677.66px ; } } </style><div data-caption-color="" data-size-tablet="" data-size-mobile="" data-align="center" data-tablet-image-separate="false" data-mobile-image-separate="false" class="zpimage-container zpimage-align-center zpimage-tablet-align-center zpimage-mobile-align-center zpimage-size-fit zpimage-tablet-fallback-fit zpimage-mobile-fallback-fit hb-lightbox " data-lightbox-options="
                type:fullscreen,
                theme:dark"><figure role="none" class="zpimage-data-ref"><span class="zpimage-anchor" role="link" tabindex="0" aria-label="Open Lightbox" style="cursor:pointer;"><picture><img class="zpimage zpimage-style-none zpimage-space-none " src="/Group%20300.png" size="fit" data-lightbox="true"/></picture></span></figure></div>
</div><div data-element-id="elm_pfjc3-aGJQ56E4Rt5J6YrA" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><section><p><span style="color:rgb(0, 0, 0);"></span></p></section><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p></div>
<div><p></p><div><header><p></p><div><section><p><span style="color:rgb(0, 0, 0);"></span></p></section><div><p></p><div><section><p><span style="color:rgb(0, 0, 0);"></span></p></section><div><section><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);">In Lightning Web Components (LWC), your UI is built using HTML templates. Three of the most important concepts every beginner must understand are:</span></p></div><div><div><ul><li><span style="color:rgb(0, 0, 0);"><strong>The &lt;div&gt; Tag</strong>&nbsp;– The most commonly used container in web development.</span></li><li><span style="color:rgb(0, 0, 0);"><strong>Onclick Event</strong>&nbsp;– Used to handle user actions.</span></li><li><span style="color:rgb(0, 0, 0);"><strong>Data Binding</strong>&nbsp;– How HTML displays and updates data dynamically using JavaScript.</span></li></ul><p><span style="color:rgb(0, 0, 0);">In this tutorial, we will learn how these three core concepts work inside&nbsp;<strong>Lightning Studio</strong>&nbsp;and how they help create interactive LWC components.</span></p><p><span style="color:rgb(0, 0, 0);"></span></p><div><p><br/></p><p>This guide covers the&nbsp;<strong>&lt;div&gt;</strong>&nbsp;tag fundamentals, handling&nbsp;<code>onclick</code>&nbsp;events, and data binding patterns used inside&nbsp;<strong>Lightning Studio / Lightning Web Components (LWC)</strong>. You'll get practical code examples, LWC-specific notes, accessibility tips, and best practices to write maintainable components.</p><p><br/></p><section><h2>The &lt;div&gt; Tag — Basics &amp; Use-Cases</h2><div><br/></div><p>The&nbsp;<strong>&lt;div&gt;</strong>&nbsp;element is a generic block-level container used to group other elements for styling or layout. It doesn't convey semantic meaning — use semantic tags (<code>&lt;header&gt;</code>,&nbsp;<code>&lt;main&gt;</code>,&nbsp;<code>&lt;section&gt;</code>,&nbsp;<code>&lt;article&gt;</code>) when content meaning matters.</p><p><br/></p><h3>Simple example</h3><pre><code> &lt;div&gt;   &lt;h2&gt;Course&lt;/h2&gt;   &lt;p&gt;Learn LWC basics&lt;/p&gt; &lt;/div&gt;     </code></pre><pre><code><br/></code></pre><p><strong>When to use &lt;div&gt;:</strong></p><ul><li>Layout containers (grid, flex)</li><li>Wrappers for styling</li><li>Non-semantic grouping of elements</li></ul><p><strong>When not to use &lt;div&gt;:</strong></p><ul><li>For content with explicit meaning — prefer semantic tags</li><li>Avoid excessive &lt;div&gt;-nesting (keeps DOM shallow and readable)</li></ul><div><br/></div></section></div><p></p></div></div></div></div></div></div></div></div></div></div></section></div></div></div></div></header></div><p></p><p></p><div><h2><span style="color:rgb(0, 0, 0);">Watch Our Video Tutorial</span></h2></div>
<p></p></div><section><div><h2><span style="color:rgb(0, 0, 0);"></span></h2></div>
<p></p></section></div><p></p></div></div><div data-element-id="elm_2j3LlXSe5fZR_cCfavJuEQ" data-element-type="video" class="zpelement zpelem-video "><style type="text/css"> @media (max-width: 767px) { [data-element-id="elm_2j3LlXSe5fZR_cCfavJuEQ"].zpelem-video iframe.zpvideo{ width:560px !important; height:315px !important; } } @media all and (min-width: 768px) and (max-width:991px){ [data-element-id="elm_2j3LlXSe5fZR_cCfavJuEQ"].zpelem-video iframe.zpvideo{ width:560px !important; height:315px !important; } } </style><div class="zpvideo-container zpiframe-align-left zpiframe-mobile-align-center zpiframe-tablet-align-center"><iframe class="zpvideo " width="2000" height="315" src="//www.youtube.com/embed/8h4C9T957Uw?enablejsapi=1" frameborder="0" allowfullscreen id=youtube-video-1 data-api=youtube></iframe></div>
</div><div data-element-id="elm_QlHXRdluq-pxYjAQryfSiQ" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><h1></h1><div><h2><span style="font-size:40px;">Onclick — Handling Clicks in Plain HTML&nbsp; &nbsp;</span></h2><div><section><p><br/></p><p>There are two common ways to handle clicks in web development:</p><ol><li>Inline HTML attribute (not recommended): <code>&lt;div&gt;</code></li><li>Using <code>addEventListener</code> or framework-specific bindings (recommended)</li></ol><div><br/></div><h3>Inline onclick (works, but avoid it)</h3><div><br/></div><pre><code> &lt;divClicked!')&quot; role=&quot;button&quot; tabindex=&quot;0&quot;&gt;   Click me &lt;/div&gt;     </code></pre><p>Problems with inline handlers:</p><ul><li>Mixes markup and logic (harder to maintain)</li><li>Not friendly for testing</li><li>No easy way to attach multiple listeners</li></ul><div><br/></div><h3>Using addEventListener (recommended)</h3><div><br/></div><pre><code> // JavaScript const el = document.querySelector('.card'); </code></pre><pre><code>el.addEventListener('click', (event) =&gt; {console.log('Card clicked', event); });     </code></pre><p>This approach separates structure (HTML) from behavior (JS) and improves testability.</p><p><br/></p><h3>Accessibility note</h3><div><br/></div><p>If you use a &lt;div&gt; as a button, add <code>role=&quot;button&quot;</code> and keyboard handlers:</p><pre><code> &lt;div role=&quot;button&quot; tabindex=&quot;0&quot;&gt;Save&lt;/div&gt;     </code></pre><pre><code> // keyboard support el.addEventListener('keydown',</code></pre><pre><code> (e) =&gt; {   if (e.key === 'Enter' || e.key === ' ')</code></pre><pre><code> {     // trigger same action as click   } });  </code></pre><pre><code>   </code></pre></section><section><h2>Data Binding — What It Means</h2><div><br/></div><p> Data binding is the connection between UI elements and JavaScript data. In LWC and Lightning Studio, you typically use <strong>one-way binding</strong> from JS → template with expressions like <code>{propertyName}</code>. To send data up (child → parent), use <code>CustomEvent</code>. </p><p><br/></p><h3>One-way binding (LWC)</h3><div><br/></div><pre><code> &lt;template&gt;   &lt;p&gt;Hello, {userName}&lt;/p&gt; &lt;/template&gt;     </code></pre><pre><code> // myComponent.js import { LightningElement } from 'lwc';</code></pre><pre><code> export default class MyComponent extends LightningElement {userName = 'Amit'; }     </code></pre><p>Changing <code>userName</code> in JS updates the template automatically.</p><p><br/></p><h3>Handling input &amp; two-way like behavior (LWC pattern)</h3><div><br/></div><p>LWC does not support implicit two-way binding. Use event handlers to update state.</p><pre><code> &lt;template&gt;   &lt;lightning-input label=&quot;Name&quot; value=&quot;{name}&quot;ge}&gt;&lt;/lightning-input&gt; </code></pre><pre><code>  &lt;p&gt;You typed: {name}&lt;/p&gt; &lt;/template&gt;     </code></pre><pre><code> import { LightningElement } from 'lwc'; export default class MyComponent extends</code></pre><pre><code> LightningElement {name = ''; handleNameChange(event)</code></pre><pre><code> </code>{this.name = event.target.value;   } }     </pre><p>Pattern: UI emits event → handler updates JS property → template re-renders.</p><p><br/></p></section><section><h2>onclick in Lightning Studio / LWC</h2><div><br/></div><p>In LWC templates, use <code>onclick</code> (or other <code>on*</code>) attributes to wire handlers defined in component JS. LWC automatically binds the handler to the component instance.</p><p><br/></p><h3>Example: Simple click handler</h3><div><br/></div><pre><code> &lt;template&gt;   &lt;div&gt;     &lt;button&gt;Save&lt;/button&gt;   &lt;/div&gt; &lt;/template&gt;     </code></pre><pre><code> // buttonCard.js import { LightningElement } from 'lwc'; export default </code></pre><pre><code>class ButtonCard extends LightningElement {   handleSave()</code></pre><pre><code> {     // `this` refers to component instance     console.log('Save clicked');} }</code>     </pre><p><strong>Note:</strong> In LWC you should avoid direct DOM event listeners (like <code>document.querySelector</code>)&nbsp;</p><p>for elements inside your template — use template handlers and lifecycle hooks instead.</p><p><br/></p><h3>Passing data via event (example)</h3><div><br/></div><pre><code> &lt;template&gt;   &lt;button data-id=&quot;123&quot;&gt;Open&lt;/button&gt; &lt;/template&gt;     </code></pre><pre><code> handleClick(event) {const id = event.target.dataset.id; // &quot;123&quot; </code></pre><pre><code>// use id to perform action }     </code></pre><p>Use <code>data-*</code> attributes to attach contextual values to elements without polluting JS code with global selectors.</p><p><br/></p><p></p></section><section><h2>Common Patterns: Div as Clickable Card (LWC-friendly)</h2><div><br/></div><p>Use a div as a clickable card while preserving accessibility and LWC best practices:</p><pre><code> &lt;template&gt;   &lt;div     role=&quot;button&quot;  tabindex=&quot;0&quot;     data-item-id={item.Id}    </code></pre><pre><code> &gt;     &lt;h3&gt;{item.Name}&lt;/h3&gt;     &lt;p&gt;{item.Description}&lt;/p&gt;   &lt;/div&gt; &lt;/template&gt;     </code></pre><pre><code> handleCardClick(event) {   const id = event.currentTarget.dataset.itemId; </code></pre><pre><code>  this.openItem(id); } handleCardKeyDown(event) {   if (event.key === 'Enter' ||</code></pre><pre><code> event.key === ' ') {     this.handleCardClick(event);   } }     </code></pre><p>This gives keyboard accessibility and uses <code>currentTarget</code> (safer when children can be clicked).</p><p><br/></p><p></p></section><section><h2>6. Data Binding &amp; Child-Parent Communication</h2><div><br/></div><p>Typical flows in LWC:</p><ol><li>Parent passes data as properties to child (<code>@api</code>)</li><li>Child dispatches <code>CustomEvent</code> to inform parent about user actions</li><li>Parent updates data → re-renders child</li></ol><div><br/></div><h3>Parent → Child (property)</h3><div><br/></div><pre><code> &lt;!-- parent.html --&gt; &lt;c-item-card item=&quot;{product}&quot;&gt;&lt;/c-item-card&gt;     </code></pre><pre><code> // itemCard.js (child) import { LightningElement, api } from 'lwc'; </code></pre><pre><code>export default class ItemCard extends LightningElement </code></pre><pre><code>{   @api item; // property received from parent }     </code></pre><pre><code><br/></code></pre><h3>Child → Parent (CustomEvent)</h3><pre><code> // child.js this.dispatchEvent(new CustomEvent('select', </code></pre><pre><code>{   detail: { id: this.item.Id } }));     </code></pre><pre><code> // parent.js handleSelect(event) {   const id = event.detail.id;   </code></pre><pre><code>// perform parent-level action }     </code></pre><p>Always document the event name and event.detail structure for maintainability.</p></section><section><p><br/></p><h2>Best Practices &amp; Do's &amp; Don'ts</h2><h3>Do:</h3><div><br/></div><ul><li>Prefer semantic tags where appropriate.</li><li>Use <code>lightning-*</code> base components for consistent look &amp; accessibility when in Salesforce.</li><li>Use <code>data-*</code> attributes to store element-specific values safely.</li><li>Keep logic in JS — template should remain declarative.</li><li>Always provide keyboard handlers when making non-interactive elements interactive.</li><li>Use <code>event.currentTarget</code> when you need the element where event listener is attached.</li></ul><div><br/></div><h3>Don't:</h3><div><br/></div><ul><li>Use inline <code>onclick</code> with heavy logic.</li><li>Mutate public properties directly from child components.</li><li>Rely on global query selectors to access template elements inside LWC — use <code>this.template.querySelector</code> only when necessary.</li><li>Ignore accessibility — keyboard and screen-reader support is mandatory for enterprise apps.</li></ul><div><br/></div><div></div></section><section><h2>Accessibility Checklist</h2><ul><li>Use <code>role</code> and <code>tabindex</code> for clickable non-button elements.</li><li>Provide <code>aria-label</code> or visible text for controls.</li><li>Ensure focus styling is visible (do not remove outline without replacement).</li><li>Support keyboard activation for interactive &lt;div&gt; elements.</li><li>Use semantic controls instead of custom widgets when possible.</li></ul><div><br/></div><div></div></section><section><h2>Troubleshooting Tips</h2><div><br/></div><ul><li><strong>Clicks not firing:</strong> Check event binding name, ensure handler is public method, and verify that element isn't covered by another element.</li><li><strong>Data not updating:</strong> Ensure you're updating reactive properties (assign new value) in component JS.</li><li><strong>Wrong dataset value:</strong> Use <code>event.currentTarget.dataset</code> if click happens on child elements.</li><li><strong>Event not reaching parent:</strong> For shadow DOM, dispatch CustomEvent with <code>bubbles: true</code> and <code>composed: true</code> if needed.</li></ul><div><br/></div><div></div></section><section><h2>Example: Complete LWC Card Component</h2><div><br/></div><pre><code> &lt;!-- productCard.html --&gt; &lt;template&gt;   </code></pre><pre><code>&lt;div role=&quot;button&quot; tabindex=&quot;0&quot; data-id={product.Id}     </code></pre><pre><code>  &gt;     &lt;img src=&quot;{product.Ima&quot;geUrl} alt=&quot;{product.Name}&quot; /&gt; </code></pre><pre><code>&lt;h3&gt;{product.Name}&lt;/h3&gt;     &lt;p&gt;{product.Price}&lt;/p&gt;   &lt;/div&gt; &lt;/template&gt;     </code></pre><pre><code> // productCard.js import { LightningElement, api } from 'lwc';</code></pre><pre><code> export default class ProductCard extends LightningElement</code></pre><pre><code> {   @api product;   handleCardClick(event)</code></pre><pre><code> {const id = event.currentTarget.dataset.id;    </code></pre><pre><code> this.dispatchEvent(new CustomEvent('select', { detail: { id } })); }</code></pre><pre><code>   handleKeyDown(event) {     if (event.key === 'Enter' || event.key === ' ') </code></pre><pre><code>{       this.handleCardClick(event);     }   } }     </code></pre><p>This example shows a fully accessible clickable card using a &lt;div&gt; with keyboard support, data binding, and custom event dispatch.</p><p><br/></p><p></p></section><section><h2>11. FAQs</h2><h3>Q: Can I use &lt;div&gt; inside LWC?</h3><p>A: Inline handlers work in plain HTML but are discouraged. In LWC, prefer template-bound handlers like <code>onclick={methodName}</code>.</p><h3>Q: Should I always use &lt;button&gt; instead of &lt;div&gt;?</h3><p>A: Use &lt;button&gt; whenever the element is an action control. Use &lt;div&gt; as a card container only when additional semantics or styling require it — then add ARIA and keyboard support.</p><h3>Q: How to pass complex data when using onclick?</h3><p>A: Use <code>data-*</code> attributes for small values (ids) and dispatch <code>CustomEvent</code> with <code>detail</code> for complex objects.</p></section><hr/><p><strong>Peoplewoo Skills – Learn Salesforce, Build Skills, Grow Your Career.</strong></p></div></div></div>
</div><div class="zpelement zpelem-carousel " data-element-id="elm_byTBvaroUVlqNQzB3l0WEQ" data-element-type="carousel" data-currentslide-index="0" data-transition="slide_left" data-zs-autoslide="false" data-zs-slider="min-height-el: zpcarousel-content-container;arrow-cont: zpcarousel-arrows-container; active-controller: zpcarousel-controller-active; controller-cont: zpcarousel-controller-container; controller: zpcarousel-controller; right-arrow: zpcarousel-arrow-right; left-arrow: zpcarousel-arrow-left;active-slide:zpcarousel-content-active; slide: zpcarousel-content; slides-cont: zpcarousel-content-container;content-cont : zpcarousel-content-inner; background: false;slide-pause-btn:zpcarousel-pause-btn;slide-play-btn:zpcarousel-play-btn;"><div class="zpcarousel-container zpcarousel-style-01"><style></style><div class="zpcarousel-content-container"><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_-dxt0NaImCeUb0jHYGM2Ow" data-slide-name="Slide 1"><div class="zpcarousel-content-inner"><div data-element-id="elm_4Jy8AFUbkHw4IXVthKXcwg" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_eO9573nNV2JPmlpkVUhEdg" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_SiJIPTsI0iZNgc4tajDCvw" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Dharmesh R.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>The explanations are clear, and the repetition really helps to reinforce the concepts. It covers everything in detail, from the basics to more advanced topics. The course includes in-depth examples that make complex ideas easy to understand. Overall, I’m really impressed and can’t wait to explore more!</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_NZnF622zgu6xIrpJo386_g" data-slide-name="Slide 2"><div class="zpcarousel-content-inner"><div data-element-id="elm_hHh-tqVupL3HL8KYT1kf9Q" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm__dSB6W4LHkpHg36wJiyBsw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_GHUL9IsOVpazUCwTJjdzMw" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Jermaine L.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>Taking this course like help me acquire all the knowledge and skills I need to excel and optimize my performance to fulfilling my operational duties in my current role as an email marketing specialist</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_v3u8hhd_AsZxORmwnoA_2g" data-slide-name="Slide 3"><div class="zpcarousel-content-inner"><div data-element-id="elm_DD4MpNQtMS1HKlrokaUzeA" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_k40UvPeZYpsuUJLZc3IAZw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_t0XTYi6tHJ5BJkc4CqF21g" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Sumit N.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>Awesome explanation. He keep repeating which helps to remind/refresh the concepts. Loved it</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_hy7Rbr8nliB0X9rRDa5aow" data-slide-name="Slide 4"><div class="zpcarousel-content-inner"><div data-element-id="elm_QL8Q-Kw-ITIb4l-A8xb-mA" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_OAbkKPefCMhNQsVayTvj2w" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_NgbzA5biiFsJ40IvZ4dfyg" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Varun V.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>It's a great course that covers everything you need to know. After almost finishing, I feel confident using the SDC platform. Definitely a 5-star experience!</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_aJlL0IwMmDJL1pq3VxCvig" data-slide-name="Slide 5"><div class="zpcarousel-content-inner"><div data-element-id="elm_WVzZlT8_Ygn-L_HvDcrbhA" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_nz3RpOWIfz2pKHIP8PmbXw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_cdESQ-gJxvN41XpT7ZaAkg" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Prajakta Nimba S.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>This course is perfect for anyone looking to build a solid foundation in Salesforce Data Cloud. The content is well-structured, easy to follow, and packed with real-world examples that make the concepts practical</span></span></p></div>
</div></div></div></div></div></div></div><div class="zpcarousel-arrows-container zpcarousel-arrow-type-01" data-arrow-style="2"><div class="zpcarousel-arrow-left" tabindex="0" role="button" aria-label="Previous"><svg aria-hidden="true" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" class="svg-icon-18px"><path d="M0,16c0,0.3,0.1,0.5,0.3,0.7l9.9,10c0.4,0.4,1,0.4,1.4,0c0.4-0.4,0.4-1,0-1.4L3.4,17H31 c0.6,0,1-0.5,1-1s-0.4-1-1-1H3.4l8.2-8.3c0.4-0.4,0.4-1,0-1.4c-0.4-0.4-1-0.4-1.4,0l-9.9,10C0.1,15.5,0,15.7,0,16z"></path></svg></div>
<div class="zpcarousel-arrow-right" tabindex="0" role="button" aria-label="Next"><svg aria-hidden="true" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" class="svg-icon-18px"><path id="arrow-right-style2-Arrow_Forward" d="M32,16c0-0.3-0.1-0.5-0.3-0.7l-9.9-10c-0.4-0.4-1-0.4-1.4,0c-0.4,0.4-0.4,1,0,1.4 l8.2,8.3H1c-0.6,0-1,0.5-1,1s0.4,1,1,1h27.6l-8.2,8.3c-0.4,0.4-0.4,1,0,1.4c0.4,0.4,1,0.4,1.4,0l9.9-10C31.9,16.5,32,16.3,32,16z"></path></svg></div>
</div><div class="zpcarousel-controller-container zpcarousel-controller-type-01"><div class="zpcarousel-controller zpcarousel-controller-active" data-slide-index="0"></div>
<div class="zpcarousel-controller " data-slide-index="1"></div><div class="zpcarousel-controller " data-slide-index="2"></div>
<div class="zpcarousel-controller " data-slide-index="3"></div><div class="zpcarousel-controller " data-slide-index="4"></div>
</div></div></div><div data-element-id="elm_Vu-0h7FBeerqTMPmZaWlug" data-element-type="heading" class="zpelement zpelem-heading "><style></style><h2
 class="zpheading zpheading-style-none zpheading-align-left zpheading-align-mobile-left zpheading-align-tablet-left " data-editor="true"><span><span style="color:rgb(0, 0, 0);">Frequently Asked Questions (FAQ)</span><br/></span></h2></div>
<div data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA" data-element-type="accordion" class="zpelement zpelem-accordion " data-tabs-inactive="false" data-icon-style="1"><style> [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion, [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content{ border-style:solid; border-color: !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content.zpaccordion-active-content:last-of-type{ border-block-end-width:1px !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion.zpaccordion-active + .zpaccordion-content{ border-block-start-color: transparent !important; } @media all and (min-width: 768px) and (max-width:991px){ [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion, [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content{ border-style:solid; border-color: !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content:last-of-type{ border-block-end-width:1px !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion.zpaccordion-active + .zpaccordion-content{ border-block-start-color: transparent !important; } } @media all and (max-width:767px){ [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion, [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content{ border-style:solid; border-color: !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content:last-of-type{ border-block-end-width:1px !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion.zpaccordion-active + .zpaccordion-content{ border-block-start-color: transparent !important; } } </style><div class="zpaccordion-container zpaccordion-style-01 zpaccordion-with-icon zpaccord-svg-icon-1 zpaccordion-icon-align-left "><div data-element-id="elm_avqPnRbxn96EwANShYaFjg" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="1. Can we use onclick on a div?" data-content-id="elm_X8MB5lkAUEcGoYBtGrpljg" style="margin-top:0;" tabindex="0" role="button" aria-label="1. Can we use onclick on a div?"><span class="zpaccordion-name">1. Can we use onclick on a div?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_X8MB5lkAUEcGoYBtGrpljg" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_u5Cj1v0VUadpxrxv948nyw" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_7ezNrxV4FkYz7RGU1G0BtQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_hae4_dzBKBBmMQbSfRCyug" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p><strong style="color:rgb(0, 0, 0);"></strong></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p><span style="color:rgb(0, 0, 0);"><span></span></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"><span></span></span></p><div><p></p><div><p></p><div><p></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);">Yes, div tags can be made clickable using onclick in LWC.</span></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div>
</div></div></div></div></div><div data-element-id="elm_2U5i1G2PT4th-0HwQ_qYMg" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="2. Can I use &lt;div&gt; inside LWC?" data-content-id="elm_HWiLrHq626LLO7HEwZZO0A" style="margin-top:0;" tabindex="0" role="button" aria-label="2. Can I use &lt;div&gt; inside LWC?"><span class="zpaccordion-name">2. Can I use &lt;div&gt; inside LWC?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_HWiLrHq626LLO7HEwZZO0A" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_EsUHLPDiEOSRoxW1Va1vSQ" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_e_hMh4qQPANv9Gq71QOCbQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_yDDgYpCDh88L_B4yVqVDpw" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p style="color:rgb(0, 0, 0);"><span></span></p><div><p style="color:rgb(0, 0, 0);"></p><div><p style="color:rgb(0, 0, 0);"></p><div><p style="color:rgb(0, 0, 0);"></p><div><p style="color:rgb(0, 0, 0);"></p><div><p style="color:rgb(0, 0, 0);"></p><div><p style="color:rgb(0, 0, 0);"></p><div><p style="color:rgb(0, 0, 0);"></p><div><p></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p>Inline handlers work in plain HTML but are discouraged. In LWC, prefer template-bound handlers like&nbsp;<code>onclick={methodName}</code>.</p></div><p></p></div><p></p></div><p></p></div><p></p></div><p style="color:rgb(0, 0, 0);"></p></div><p style="color:rgb(0, 0, 0);"></p></div><p style="color:rgb(0, 0, 0);"></p></div><p style="color:rgb(0, 0, 0);"></p></div><p style="color:rgb(0, 0, 0);"></p></div><p style="color:rgb(0, 0, 0);"></p></div><p style="color:rgb(0, 0, 0);"></p></div><p></p></div></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div></div></div></div></div></div></div>
</div></div></div></div></div><div data-element-id="elm_z819rp9QtsimO7OBe5fUQQ" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="3.Should I always use &lt;button&gt; instead of &lt;div&gt;?" data-content-id="elm_G0J2WJbaranPy8N5RGud_Q" style="margin-top:0;" tabindex="0" role="button" aria-label="3.Should I always use &lt;button&gt; instead of &lt;div&gt;?"><span class="zpaccordion-name">3.Should I always use &lt;button&gt; instead of &lt;div&gt;?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_G0J2WJbaranPy8N5RGud_Q" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_NLdjpQsYYYsfKNQ4rWhxJg" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_mCo9PctebWjYnQx_burGTQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_PUMBoTZ3jG3CqnmnOda7FA" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p>Use &lt;button&gt; whenever the element is an action control. Use &lt;div&gt; as a card container only when additional semantics or styling require it — then add ARIA and keyboard support.</p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><code></code><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div>
</div></div></div></div></div><div data-element-id="elm_MrzO9Mu2yvjD1yOveoN1ag" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="4. Is onclick the only event supported in LWC?" data-content-id="elm_VCfqx-I0okQtrLLtQgg6uQ" style="margin-top:0;" tabindex="0" role="button" aria-label="4. Is onclick the only event supported in LWC?"><span class="zpaccordion-name">4. Is onclick the only event supported in LWC?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_VCfqx-I0okQtrLLtQgg6uQ" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_83IdZWSoCFzucCnLahu5cw" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_lHAb9U1G1dgp1V6c444ATQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_Q-zMCoK5NRejxdtEjZeb0g" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p style="color:rgb(0, 0, 0);"></p><div><p style="color:rgb(0, 0, 0);"></p><div><p style="color:rgb(0, 0, 0);"></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);">No, LWC supports many events like onchange, oninput, onmouseover, etc.</span></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p style="color:rgb(0, 0, 0);"></p></div><p style="color:rgb(0, 0, 0);"></p></div><p style="color:rgb(0, 0, 0);"></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div>
</div></div></div></div></div><div data-element-id="elm_tbTU4vUzVyHxec4fh5treA" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="5. How to pass complex data when using onclick?" data-content-id="elm_ytAT6ZF-UgNskNSKR7FuZQ" style="margin-top:0;" tabindex="0" role="button" aria-label="5. How to pass complex data when using onclick?"><span class="zpaccordion-name">5. How to pass complex data when using onclick?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_ytAT6ZF-UgNskNSKR7FuZQ" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_I_fDz0ybSUu9nfzEuPrMMg" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_LJZ6EEKHjUSNa8ZMVwDadw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_zjpsXejtTlBuGOWTiUljMA" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div>Use&nbsp;<code>data-*</code>&nbsp;attributes for small values (ids) and dispatch&nbsp;<code>CustomEvent</code>&nbsp;with&nbsp;<code>detail</code>&nbsp;for complex objects.</div><p></p></div><p></p></div><p></p></div>
</div></div></div></div></div></div></div><div data-element-id="elm_8m4TfeROM6fQN9AHueEupg" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p><span style="font-family:Poppins, sans-serif;font-size:40px;font-weight:600;color:rgb(0, 0, 0);">Conclusion</span></p><div><div><span style="color:rgb(0, 0, 0);"><strong></strong></span></div><div><p></p></div>
</div><div><p></p><div><section><p></p></section></div></div><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p><div><p></p><div><p></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p><div><p></p><div><p></p><div><p></p><div><p></p></div></div></div></div></div></div></div></div></div><div><p></p><div><p></p><div><div><p></p><div></div></div><div><div><div><div><div><div><div><div><div><div></div></div></div></div></div></div></div></div></div></div></div></div></div><span style="color:rgb(0, 0, 0);">Understanding&nbsp;<strong>div tags, onclick events, and data binding</strong>&nbsp;forms the base of every Lightning Web Component. These three concepts help you create structured layouts, interactive buttons, and dynamic UI that responds to user actions.<br/><br/>Master these basics, and you'll be able to build real LWC components confidently inside Lightning Studio.</span><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
</div></div></div><p></p><div><div><h2></h2></div><div><div><h2><span style="color:rgb(0, 0, 0);">More SFDC Resources</span></h2></div><span style="color:rgb(0, 0, 0);"><br/></span><div><span style="font-style:italic;color:rgb(0, 0, 0);"><p>Start your SFMC journey today — join our&nbsp;<strong><a href="https://www.peoplewoo.com/" target="_blank" rel="">Live Training</a></strong>&nbsp;</p><p>Need help? Chat with us on&nbsp;<strong><a href="https://wa.me/%2B917875494672" rel="">WhatsApp</a></strong>&nbsp;anytime.</p><p>Learn. Practice. Get Certified. Succeed with&nbsp;<strong><a href="https://www.youtube.com/%40peoplewoo" target="_blank" rel="">Peoplewoo Skills</a></strong><a href="https://www.youtube.com/redirect?event=video_description&amp;redir_token=QUFFLUhqbUhyQUhpemJaOGZXR1RFRmxub3lNZlR4QW43QXxBQ3Jtc0ttMFhRMWtISFBVdlhJYlNab3NZS0hRd0RrQ0hwaTNGVEVhX2hVWUo3TktGN3VGa2FIWWtsQ1QtM0wxWG1ud0ZEeG02OG1CU3ZvVkE3ekNUUjZoaWFxZmhsUHNMR2diOEl5Wm5ROEpiUTVJSkJfQjF1MA&amp;q=https%3A%2F%2Fchat.whatsapp.com%2FKGLPRc9tofo0oiyd9oQW4E&amp;v=d_fgnADOmiQ" target="_blank" rel="">.</a></p></span></div></div><div><span style="font-style:italic;color:rgb(0, 0, 0);"><p><a href="https://www.youtube.com/%40peoplewoo" rel=""></a></p></span></div>
</div><p></p></div><p></p></div></div></div><div data-element-id="elm_KnMYXjQPWbIKC85JEm98qw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-4 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div class="zpelement zpelem-newsletter " data-list-id="" data-integ-type="" data-element-id="elm_eV_tPTfOVvRvGG8gHurC3Q" data-element-type="newsletter"><style type="text/css"></style><div class="zpnewsletter-container zpnewsletter-style-01 "><h2 class="zpheading zpheading-align-center zpnewsletter-heading" data-editor="true">Subscribe to our newsletter</h2><p class="zptext zptext-align-center zpnewsletter-desc" data-editor="true"> Stay informed about our latest updates through email. Subscribe here.</p><form class="zpform-container zpnewsletter-input-container"><label for="Email_elm_eV_tPTfOVvRvGG8gHurC3Q" class="zs-visually-hidden">Email</label><input type="text" id="Email_elm_eV_tPTfOVvRvGG8gHurC3Q" name="email" placeholder="Email" class="zpnewsletter-email-input-field"/><button type="submit" class="zpbutton zpnewsletter-button zpbutton-type-primary zpbutton-size-md">Subscribe</button></form></div>
</div><div data-element-id="elm_3-a_z2EN2Rdvo4WVGz-Y1Q" itemscope="" data-element-type="socialprofile" class="zpelement zpelem-socialprofile" data-element-id="elm_3-a_z2EN2Rdvo4WVGz-Y1Q"><style type="text/css"></style><div data-socialprofile_container class="zpsocialprofile-container zpsocialprofile-size-md zpsocialprofile-halign-center zpsocialprofile-align-mobile-center zpsocialprofile-align-tablet-center zpsocialprofile-style-none zpsocialprofile-type-color "><a href="https://www.linkedin.com/company/peoplewoo" class="zpsocialprofile-wrapper zpsocialprofile-linkedin" target="_blank" aria-label="LinkedIn"><svg aria-hidden="true" class="zpsocialprofile" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><path d="M64 4.706v54.588A4.706 4.706 0 0 1 59.294 64H4.706A4.706 4.706 0 0 1 0 59.294V4.706A4.706 4.706 0 0 1 4.706 0h54.588A4.706 4.706 0 0 1 64 4.706zM18.824 24.47H9.412v30.117h9.412V24.471zm.847-10.353a5.421 5.421 0 0 0-5.384-5.46h-.17a5.459 5.459 0 0 0 0 10.918 5.421 5.421 0 0 0 5.554-5.289v-.17zm34.917 22.174c0-9.054-5.76-12.574-11.482-12.574a10.73 10.73 0 0 0-9.525 4.856h-.263v-4.103H24.47v30.117h9.411V38.57a6.25 6.25 0 0 1 5.647-6.738h.358c2.993 0 5.214 1.882 5.214 6.625v16.132h9.412l.075-18.296z"/></svg></a><a href="https://www.youtube.com/@peoplewoo" class="zpsocialprofile-wrapper zpsocialprofile-youtube" target="_blank" aria-label="YouTube"><svg aria-hidden="true" class="zpsocialprofile" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><path d="M32.786 10l.106.001.392.002c1.94.009 6.896.05 11.873.237l.765.03c4.589.187 9.063.504 11.068 1.04 2.71.73 4.84 2.86 5.56 5.56 1.204 4.505 1.301 13.515 1.31 14.939v.382c-.009 1.424-.106 10.434-1.31 14.939a7.885 7.885 0 0 1-5.56 5.56c-4.455 1.19-21.107 1.3-24.098 1.309h-.923c-2.99-.01-19.635-.118-24.099-1.309a7.885 7.885 0 0 1-5.56-5.56c-.401-1.502-.68-3.504-.873-5.559l-.058-.65c-.314-3.688-.368-7.394-.377-8.552L1 32.124v-.194-.054l.002-.245c.009-1.158.063-4.864.377-8.552l.058-.65c.193-2.055.472-4.057.873-5.559a7.885 7.885 0 0 1 5.56-5.56c4.296-1.146 19.878-1.29 23.706-1.307L31.97 10h.105zM26.15 22.57v18.86L42.48 32l-16.33-9.43z"/></svg></a><a href="https://www.instagram.com/peoplewoo_consulting/" class="zpsocialprofile-wrapper zpsocialprofile-instagram" target="_blank" aria-label="Instagram"><svg aria-hidden="true" class="zpsocialprofile" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient x1="72.5875139%" y1="0%" x2="28.281045%" y2="106.524963%" id="linearGradient-1"><stop stop-color="#9A1DF1" offset="0%"></stop><stop stop-color="#ED1E64" offset="49.3618943%"></stop><stop stop-color="#FFD002" offset="100%"></stop></linearGradient><path d="M18.7470755,0.221595251 C15.3422244,0.382299247 13.0166948,0.927668835 10.9845413,1.72394402 C8.8808805,2.5440464 7.09761014,3.64310557 5.32364538,5.42434073 C3.54758782,7.20661909 2.45687425,8.99304465 1.64301187,11.0988238 C0.855031083,13.1361614 0.321066295,15.4627981 0.170711099,18.8697484 C0.0214311023,22.2829708 -0.012802497,23.3716107 0.00383750267,32.0611721 C0.0204135023,40.7496967 0.0587623014,41.8403975 0.221527098,45.254631 C0.384285494,48.6585158 0.927619882,50.9830597 1.72388866,53.0162565 C2.54502785,55.1199428 3.64296062,56.9022276 5.42521338,58.6772547 C7.20645494,60.4522883 8.9939045,61.5419779 11.1006629,62.3569282 C13.1359204,63.1438722 15.46353,63.6799042 18.8694627,63.8291842 C22.2826082,63.9795458 23.3722466,64.0127042 32.0596384,63.9961282 C40.7511454,63.9795458 41.8408478,63.941165 45.2539933,63.7794178 C48.6588444,63.616653 50.9822875,63.0712898 53.0165275,62.2770946 C55.1201883,61.4538563 56.9034586,60.3579395 58.6774234,58.5756547 C60.4513945,56.7943876 61.5421081,55.0069188 62.3560345,52.9001285 C63.1440153,50.8648453 63.6800089,48.5372038 63.8282777,45.1333446 C63.9775577,41.7180679 64.0128665,40.6273351 63.9962265,31.9388169 C63.9796441,23.2492555 63.9402841,22.1606092 63.7785369,18.7484684 C63.6167897,15.3414861 63.0714329,13.0179854 62.2761753,10.9837454 C61.4540249,8.88005905 60.3571033,7.0987919 58.5758618,5.32274074 C56.7946202,3.54875038 55.0071771,2.4559312 52.9004123,1.64411682 C50.8641371,0.856129637 48.5375324,0.319048049 45.1316061,0.171822452 C41.7184606,0.0204496555 40.6288222,-0.0127087437 31.9383264,0.00387365592 C23.2499298,0.0204560555 22.160285,0.0577936547 18.7470755,0.221595251 M19.1203747,58.0696835 C16.0006051,57.9338499 14.3064996,57.4154436 13.1774308,56.9810372 C11.682346,56.4024772 10.6154853,55.7088452 9.49261809,54.5942852 C8.37184371,53.4755524 7.67612533,52.4117765 7.09241974,50.9198021 C6.65381495,49.7906885 6.12611576,48.0986182 5.97993337,44.9788358 C5.82129017,41.6060871 5.78502777,40.5941383 5.76945657,32.0497481 C5.75287417,23.5074443 5.78394617,22.4954955 5.93120377,19.1196428 C6.06491897,16.0019213 6.58648055,14.3057037 7.01983094,13.1776334 C7.59834613,11.6804686 8.28988531,10.6156558 9.40655089,9.49280784 C10.5252389,8.36992787 11.5889956,7.67628948 13.081994,7.0925775 C14.2100452,6.65191191 15.9021283,6.12831512 19.0208227,5.98007832 C22.3956194,5.82038552 23.4064738,5.78618392 31.9486944,5.76960153 C40.4929438,5.75298713 41.5048734,5.78307992 44.8807453,5.93134872 C47.9983644,6.06715032 49.6945564,6.58350231 50.8216028,7.0199951 C52.3176987,7.59852308 53.3845595,8.28801427 54.5064091,9.40674704 C55.628201,10.5254798 56.323913,11.5871694 56.9076186,13.0832846 C57.3482458,14.2082189 57.8718362,15.9023821 58.0190938,19.0201036 C58.1797594,22.3949387 58.2160858,23.4068555 58.231593,31.9491913 C58.2481754,40.4935879 58.2171034,41.5054983 58.0688346,44.8792902 C57.933033,47.9990726 57.4156442,49.6942725 56.9802074,50.8243973 C56.4016858,52.3184581 55.710089,53.3853316 54.5924123,54.5082116 C53.4747995,55.6269444 52.4110427,56.3246916 50.9169691,56.9084356 C49.7910044,57.348026 48.0968988,57.8726723 44.9802333,58.0209411 C41.6055006,58.1795587 40.5945822,58.2158467 32.0492576,58.2314179 C23.507037,58.2480131 22.4961826,58.2158659 19.1203747,58.0696835 M45.2073489,14.8946189 C45.2114717,17.0138765 46.9346204,18.729806 49.053846,18.7256663 C51.1740891,18.7215116 52.8900251,16.9993549 52.8869253,14.8800973 C52.8827483,12.7608398 51.1595931,11.043899 49.03935,11.0480387 C46.9191132,11.052187 45.2031773,12.7753614 45.2073489,14.8946189 M15.5693094,32.0310857 C15.5869347,41.1063495 22.957565,48.4469894 32.0305952,48.4293954 C41.1046942,48.4117446 48.4493852,41.0430983 48.4318231,31.9678665 C48.414134,22.8957323 41.0424926,15.5509133 31.967376,15.5685072 C22.8942818,15.5861645 15.5516836,22.9579403 15.5693094,32.0310857 M21.3328633,32.0196937 C21.3225058,26.1295435 26.0897377,21.344654 31.978768,21.3342528 C37.868867,21.3228812 42.6547101,26.0880651 42.6661227,31.9792585 C42.6775581,37.870452 37.9103198,42.6542983 32.0192032,42.6657427 C26.1301793,42.6771143 21.3442722,37.9108872 21.3328633,32.0196937" id="path-2"></path></defs><g stroke="none" stroke-width="1" fill-rule="evenodd"><mask fill="white"><use xlink:href="#path-2"></use></mask><use class="cl-path-inherit" fill="url(#linearGradient-1)" xlink:href="#path-2"></use></g></svg></a><a href="https://wa.me/+917875494672" class="zpsocialprofile-wrapper zpsocialprofile-whatsapp" target="_blank" aria-label="WhatsApp"><svg aria-hidden="true" class="zpsocialprofile" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><defs><linearGradient x1="49.9999983%" y1="100%" x2="49.9999983%" y2="0.00237659529%" id="wtlinearGradient-1"><stop stop-color="#F9F9F9" offset="0%"></stop><stop stop-color="#FFFFFF" offset="100%"></stop></linearGradient></defs><g stroke="none" stroke-width="1" fill-rule="evenodd"><g fill-rule="nonzero"><path class="cl-path-transparent" d="M1.10771574,62.8926967 L5.4728797,47.0284478 C2.78074848,42.3847708 1.36440022,37.1174751 1.3659281,31.7224137 C1.37356752,14.8421228 15.1734138,1.1088243 32.1283401,1.1088243 C40.3575222,1.11186634 48.0825026,4.30144735 53.8884609,10.0874112 C59.6974751,15.873375 62.8938079,23.5651781 62.8907543,31.745229 C62.8831127,48.6255199 49.0832664,62.3603394 32.1283401,62.3603394 C32.1283401,62.3603394 32.1283401,62.3603394 32.1283401,62.3603394 L32.1145892,62.3603394 C26.9656208,62.3588184 21.9067976,61.0720346 17.4148193,58.633838 L1.10618786,62.8911757 L1.10771574,62.8926967 Z" fill="#25D266"></path><path class="cl-path-inherit" d="M32.1344517,0 C40.6585153,0.00304204197 48.6585147,3.30669962 54.6753211,9.30104333 C60.6905995,15.295387 64.0030515,23.264016 64,31.7376239 C63.9924328,49.0469187 49.9804471,63.1660029 32.660306,63.4466537 L32.1344517,63.4509114 L32.1344517,63.4509114 L32.1207007,63.4509114 C26.7883863,63.4493904 21.5477449,62.116976 16.893811,59.5905602 L0.00152788378,64 L0,64 L4.52100811,47.5668893 C1.73262021,42.7574209 0.265851778,37.3015186 0.267379662,31.7117665 C0.27501908,14.2261093 14.5683718,0 32.1344517,0 Z M32.143619,5.35703591 C17.5339943,5.35703591 5.65316999,17.179932 5.6470572,31.7132875 C5.64553057,36.6931103 7.04507211,41.5436462 9.69595047,45.7401431 L10.3269665,46.7379328 L7.65011409,56.464862 L17.6745596,53.8487059 L17.6760875,53.8487059 L18.6432379,54.4190888 C22.7089366,56.8207809 27.37051,58.0908335 32.1237565,58.0938755 L32.1344517,58.0938755 C46.7318533,58.0938755 58.6142055,46.2694584 58.6203176,31.7345818 C58.6218449,24.6907337 55.8701262,18.0682083 50.8693626,13.0868646 C45.868599,8.10552083 39.2192487,5.36007795 32.143619,5.35703591 Z M20.8510299,17.0688705 C21.3827335,17.0688705 21.9129092,17.0673765 22.3773858,17.0871497 C22.9457586,17.1099651 23.5737188,17.1358224 24.1695935,18.4560686 L24.1695935,18.4560686 C24.8785316,20.0242413 26.4262779,23.9439124 26.6249028,24.3408988 C26.8235276,24.7378853 26.9564535,25.2002757 26.6906018,25.729591 C26.42475,26.2589063 26.2918241,26.5889678 25.8945743,27.0513582 C25.4957966,27.5152696 25.057294,28.0856525 24.6997692,28.4400504 C24.2994636,28.8339948 23.8854071,29.2644438 24.3498838,30.0568957 C24.8143605,30.8508686 26.4125269,33.4457304 28.7792189,35.5462604 C31.8212355,38.2460727 34.3865524,39.0826342 35.1825798,39.4796207 C35.9786073,39.8766072 36.4430839,39.8096822 36.9075606,39.2803669 C37.3720373,38.7525727 38.8983932,36.966894 39.4285688,36.1744421 C39.9602724,35.3804691 40.4904481,35.512798 41.2207765,35.7774556 C41.9511049,36.0405922 45.8655432,37.9585997 46.6615706,38.3555862 C47.4575981,38.7525727 47.9893016,38.9503054 48.1879265,39.2803669 C48.3865514,39.6119495 48.3865514,41.1983744 47.7234499,43.0494569 C47.0588204,44.9005395 43.8090116,46.6846971 42.3483547,46.8170259 C42.2952399,46.8218379 42.2422464,46.8271688 42.189112,46.8328475 L42.0290247,46.850756 C40.6602396,47.0089406 39.0295689,47.2820712 32.7929696,44.8336146 C24.6997692,41.6562017 19.5905258,33.3970578 19.1917482,32.8692635 C18.7944984,32.3399482 15.9404115,28.5708582 15.9404115,24.6709604 C15.9404115,20.7710626 17.996943,18.8530551 18.7272715,18.0606032 C19.4575999,17.2681512 20.3193264,17.0688705 20.8510299,17.0688705 Z" fill="url(#wtlinearGradient-1)"></path></g></g></svg></a></div>
</div></div></div></div></div></div> ]]></content:encoded><pubDate>Fri, 05 Dec 2025 05:44:12 +0530</pubDate></item><item><title><![CDATA[Component & Attribute in LightningStudio | Salesforce LWC Beginner Tutorial | Peoplewoo Skills]]></title><link>https://www.peoplewoo.com/blogs/post/component-attribute-in-lightningstudio-salesforce-lwc-beginner-tutorial-peoplewoo-skills</link><description><![CDATA[ This tutorial explains how to build and structure Lightning Web Components (LWC) inside&nbsp; LightningStudio &nbsp;(Salesforce development environment ]]></description><content:encoded><![CDATA[<div class="zpcontent-container blogpost-container "><div data-element-id="elm_VSFK6u_qTROrUlbkwFcnHQ" data-element-type="section" class="zpsection "><style type="text/css"></style><div class="zpcontainer-fluid zpcontainer"><div data-element-id="elm_AX1H_FWwTISZjTAoLhORpg" data-element-type="row" class="zprow zprow-container zpalign-items- zpjustify-content- " data-equal-column=""><style type="text/css"></style><div data-element-id="elm_QmO3R2StSMOPjvWG4mBR2w" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-8 zpcol-sm-12 zpalign-self- "><style type="text/css"></style><div data-element-id="elm_zt8AQ9V5TPuN5ANXWKA81A" data-element-type="image" class="zpelement zpelem-image "><style> @media (min-width: 992px) { [data-element-id="elm_zt8AQ9V5TPuN5ANXWKA81A"] .zpimage-container figure img { width: 730px ; height: 677.66px ; } } </style><div data-caption-color="" data-size-tablet="" data-size-mobile="" data-align="center" data-tablet-image-separate="false" data-mobile-image-separate="false" class="zpimage-container zpimage-align-center zpimage-tablet-align-center zpimage-mobile-align-center zpimage-size-fit zpimage-tablet-fallback-fit zpimage-mobile-fallback-fit hb-lightbox " data-lightbox-options="
                type:fullscreen,
                theme:dark"><figure role="none" class="zpimage-data-ref"><span class="zpimage-anchor" role="link" tabindex="0" aria-label="Open Lightbox" style="cursor:pointer;"><picture><img class="zpimage zpimage-style-none zpimage-space-none " src="/Group%20300.png" size="fit" data-lightbox="true"/></picture></span></figure></div>
</div><div data-element-id="elm_pfjc3-aGJQ56E4Rt5J6YrA" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><section><p><span style="color:rgb(0, 0, 0);"></span></p></section><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p></div>
<div><p></p><div><header><p></p><div><section><p><span style="color:rgb(0, 0, 0);"></span></p></section><div><p></p><div><section><p><span style="color:rgb(0, 0, 0);"></span></p></section><div><section><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);">This tutorial explains how to build and structure Lightning Web Components (LWC) inside&nbsp;<strong>LightningStudio</strong>&nbsp;(Salesforce development environment), focusing on the two most important concepts for any LWC developer:&nbsp;<strong>Components</strong>&nbsp;and&nbsp;<strong>Attributes</strong>&nbsp;(public properties exposed via&nbsp;<code>@api</code>). You’ll learn file structure, how to create components, pass attributes between parent and child components, use data binding, and follow LWC best practices.</span></p><div><span style="color:rgb(0, 0, 0);"><br/></span></div></div><div><div><h2><span style="color:rgb(0, 0, 0);">What is a Lightning Web Component?</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);">A Lightning Web Component (LWC) is a modern, standards-based UI building block for Salesforce. Each component encapsulates HTML (template), JavaScript (logic), and optional CSS (styles) plus a configuration file (<code>.js-meta.xml</code>) that defines metadata and component visibility.</span></p><p><span style="color:rgb(0, 0, 0);">Components are reusable — you compose complex UI by nesting components, passing data via attributes, and communicating with events.</span></p></div></div><p></p></div></div></div><p><span style="color:rgb(0, 0, 0);"><br/></span></p></div></div></div></div></div></section></div></div></div></div></header></div><p></p><p></p><div><h2><span style="color:rgb(0, 0, 0);">Watch Our Video Tutorial</span></h2></div>
<p></p></div><section><div><h2><span style="color:rgb(0, 0, 0);"></span></h2></div>
<p></p></section></div><p></p></div></div><div data-element-id="elm_IU9YvXNwmOtZi7YVYV03gw" data-element-type="video" class="zpelement zpelem-video "><style type="text/css"> @media (max-width: 767px) { [data-element-id="elm_IU9YvXNwmOtZi7YVYV03gw"].zpelem-video iframe.zpvideo{ width:560px !important; height:315px !important; } } @media all and (min-width: 768px) and (max-width:991px){ [data-element-id="elm_IU9YvXNwmOtZi7YVYV03gw"].zpelem-video iframe.zpvideo{ width:560px !important; height:315px !important; } } </style><div class="zpvideo-container zpiframe-align-left zpiframe-mobile-align-center zpiframe-tablet-align-center"><iframe class="zpvideo " width="2000" height="315" src="//www.youtube.com/embed/At06UOV2pj8?enablejsapi=1" frameborder="0" allowfullscreen id=youtube-video-1 data-api=youtube></iframe></div>
</div><div data-element-id="elm_QlHXRdluq-pxYjAQryfSiQ" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><h1></h1><div><span style="font-family:Poppins, sans-serif;font-size:40px;font-weight:600;color:rgb(0, 0, 0);">LightningStudio: Quick Workflow</span></div><section><p><span style="color:rgb(0, 0, 0);"><br/></span></p><p><span style="color:rgb(0, 0, 0);"> LightningStudio is a developer-friendly workspace (Cloud IDE or local Studio plugin). Typical steps: </span></p><ol><li><span style="color:rgb(0, 0, 0);">Create a new LWC component (right-click → New → Lightning Web Component)</span></li><li><span style="color:rgb(0, 0, 0);">Edit <code>.html</code>, <code>.js</code>, and <code>.css</code> files</span></li><li><span style="color:rgb(0, 0, 0);">Configure <code>.js-meta.xml</code> for target (record page / app / home)</span></li><li><span style="color:rgb(0, 0, 0);">Deploy to scratch org / sandbox or preview locally (if supported)</span></li><li><span style="color:rgb(0, 0, 0);">Test interactions and attributes</span></li></ol><p><span style="color:rgb(0, 0, 0);"><strong>Note:</strong> The exact UI of LightningStudio may vary. This guide focuses on LWC concepts that are the same across editors.</span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p></section><section><h2><span style="color:rgb(0, 0, 0);">Component File Structure (Example)</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
<p><span style="color:rgb(0, 0, 0);">When you create <code>myCard</code> component, LightningStudio generates:</span></p><pre><code style="color:rgb(0, 0, 0);"> myCard/   myCard.html        &lt;-- template (markup)   myCard.js     </code></pre><pre><code style="color:rgb(0, 0, 0);">     &lt;-- component logic   myCard.css         &lt;-- component styles (optional)  </code></pre><pre><code style="color:rgb(0, 0, 0);"> myCard.js-meta.xml &lt;-- metadata (where component can be used)   </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h3><span style="color:rgb(0, 0, 0);">myCard.html (template)</span></h3><pre><code style="color:rgb(0, 0, 0);"> &lt;template&gt;   &lt;div&gt;     &lt;h2&gt;{title}&lt;/h2&gt;     &lt;slot&gt;&lt;/slot&gt;   &lt;/div&gt; &lt;/template&gt; </code></pre><pre><code style="color:rgb(0, 0, 0);">  </code></pre><h3><span style="color:rgb(0, 0, 0);">myCard.js (JavaScript)</span></h3><pre><code style="color:rgb(0, 0, 0);"> import { LightningElement, api } from 'lwc'; </code></pre><pre><code style="color:rgb(0, 0, 0);">export default class MyCard extends LightningElement </code></pre><pre><code style="color:rgb(0, 0, 0);">{   @api title = 'Default Title'; // public attribute }   </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h3><span style="color:rgb(0, 0, 0);">myCard.js-meta.xml (metadata)</span></h3><pre><code style="color:rgb(0, 0, 0);"> &lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;</code></pre><pre><code style="color:rgb(0, 0, 0);"> &lt;LightningComponentBundle xmlns=&quot;http://soap.sforce.com/2006/04/metadata&quot;&gt;</code></pre><pre><code style="color:rgb(0, 0, 0);">   &lt;apiVersion&gt;57.0&lt;/apiVersion&gt;   &lt;isExposed&gt;true&lt;/isExposed&gt;   &lt;targets&gt;  </code></pre><pre><code style="color:rgb(0, 0, 0);">   &lt;target&gt;lightning__AppPage&lt;/target&gt;     &lt;target&gt;lightning__RecordPage&lt;/target&gt; </code></pre><pre><code style="color:rgb(0, 0, 0);">  &lt;/targets&gt; &lt;/LightningComponentBundle&gt;   </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre></section><section><h2><span style="color:rgb(0, 0, 0);">What Are Attributes in LWC?</span></h2><p><span style="color:rgb(0, 0, 0);"> In LWC, <strong>attributes</strong> typically mean HTML-like attributes used to pass values to components. On the JavaScript side these map to public properties decorated with <code>@api</code>. </span></p><p><strong style="color:rgb(0, 0, 0);">Key points:</strong></p><ul><li><span style="color:rgb(0, 0, 0);"><code>@api</code> marks a property as public — it can be set by a parent component.</span></li><li><span style="color:rgb(0, 0, 0);">Public properties are reactive — when changed by the parent, the child re-renders.</span></li><li><span style="color:rgb(0, 0, 0);">Attributes passed in markup are converted to strings by HTML — LWC converts or parses where appropriate.</span></li><li><span style="color:rgb(0, 0, 0);">Boolean attributes and absence/presence nuances exist (see examples below).</span></li></ul><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
</section><section><h2><span style="color:rgb(0, 0, 0);">Passing Data: Parent → Child</span></h2><p><span style="color:rgb(0, 0, 0);">Parent components set child attributes in the child tag. Example:</span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h3><span style="color:rgb(0, 0, 0);">childComponent.js</span></h3><pre><code style="color:rgb(0, 0, 0);"> import { LightningElement, api } from 'lwc'; export default </code></pre><pre><code style="color:rgb(0, 0, 0);">class ChildComponent extends LightningElement {   @api recordId; </code></pre><pre><code style="color:rgb(0, 0, 0);">// public string   @api showHeader = true; // public boolean (default true) }  </code></pre><pre><code style="color:rgb(0, 0, 0);"> </code></pre><h3><span style="color:rgb(0, 0, 0);">parentComponent.html</span></h3><pre><code style="color:rgb(0, 0, 0);"> &lt;template&gt;   &lt;c-child-component record-id={currentRecordId} </code></pre><pre><code style="color:rgb(0, 0, 0);">show-header={showHeader}&gt;&lt;/c-child-component&gt; &lt;/template&gt;   </code></pre><p><span style="color:rgb(0, 0, 0);"><strong>Important:</strong> Attribute names in markup use kebab-case (dash-case) while JS properties use camelCase. The framework maps <code>record-id</code> → <code>recordId</code>, <code>show-header</code> → <code>showHeader</code>.</span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p></section><section><h2><span style="color:rgb(0, 0, 0);">Child → Parent Communication (Events)</span></h2><p><span style="color:rgb(0, 0, 0);">Attributes are one-way (parent → child). To send data up, child components dispatch events:</span></p><pre><code style="color:rgb(0, 0, 0);"> // child.js this.dispatchEvent(new CustomEvent('saved', { detail:</code></pre><pre><code style="color:rgb(0, 0, 0);"> { id: this.recordId } })); // parent.html &lt;c-child-component&gt;&lt;/c-child-component&gt;</code></pre><pre><code style="color:rgb(0, 0, 0);"> // parent.js handleSaved(event) {   const id = event.detail.id; }   </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre></section><section><h2><span style="color:rgb(0, 0, 0);">Detailed Examples: Attribute Types &amp; Behavior</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
<h3><span style="color:rgb(0, 0, 0);">1) String attribute</span></h3><pre><code style="color:rgb(0, 0, 0);"> // child.js import { LightningElement, api } from 'lwc'; export </code></pre><pre><code style="color:rgb(0, 0, 0);">default class Greeting extends LightningElement {   @api name = 'Guest'; }   </code></pre><pre><code style="color:rgb(0, 0, 0);"> &lt;!-- parent.html --&gt; &lt;c-greeting name=&quot;Amit&quot;&gt;&lt;/c-greeting&gt; </code></pre><pre><code style="color:rgb(0, 0, 0);">&lt;!-- OR using JS property binding --&gt; &lt;c-greeting name=&quot;{userName}&quot;&gt;&lt;/c-greeting&gt;</code></pre><pre><code style="color:rgb(0, 0, 0);">   </code></pre><h3><span style="color:rgb(0, 0, 0);">2) Boolean attribute</span></h3><p><span style="color:rgb(0, 0, 0);">HTML attributes are strings. To pass boolean true/false reliably, bind to JS boolean or use presence rules.</span></p><pre><code style="color:rgb(0, 0, 0);"> &lt;!-- parent.html --&gt; &lt;c-child show-header={isHeaderVisible}&gt;&lt;/c-child&gt;   </code></pre><pre><code style="color:rgb(0, 0, 0);"> // parent.js isHeaderVisible = true; // boolean   </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h3><span style="color:rgb(0, 0, 0);">3) Object / Array</span></h3><p><span style="color:rgb(0, 0, 0);">Pass via property binding (not static attributes):</span></p><pre><code style="color:rgb(0, 0, 0);"> &lt;c-child items=&quot;{itemsList}&quot;&gt;&lt;/c-child&gt;   </code></pre><pre><code style="color:rgb(0, 0, 0);"> // parent.js itemsList = [{id:1, name:'A'}, {id:2, name:'B'}];   </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre></section><section><h2><span style="color:rgb(0, 0, 0);">Slots &amp; Default Content</span></h2><p><span style="color:rgb(0, 0, 0);">Slots let you pass HTML content into child components (markup content), useful for building layout components:</span></p><pre><code style="color:rgb(0, 0, 0);"> &lt;!-- myCard.html --&gt; &lt;template&gt;   &lt;div&gt;     &lt;h2&gt;{title}&lt;/h2&gt;   </code></pre><pre><code style="color:rgb(0, 0, 0);">  &lt;slot&gt;Default content if none provided&lt;/slot&gt;   &lt;/div&gt; &lt;/template&gt;</code></pre><pre><code style="color:rgb(0, 0, 0);"> &lt;!-- parent usage --&gt; &lt;c-my-card title=&quot;Welcome&quot;&gt;  </code></pre><pre><code style="color:rgb(0, 0, 0);"> &lt;p&gt;Custom body provided by parent&lt;/p&gt; &lt;/c-my-card&gt;   </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre></section><section><h2><span style="color:rgb(0, 0, 0);">Type Conversion &amp; Edge Cases</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
<p><span style="color:rgb(0, 0, 0);"> Because HTML attributes are strings, be careful with numbers/booleans passed as static literals. Always prefer property binding with curly braces (<code>{}</code>) to pass typed data from parent component JS. </span></p><p><span style="color:rgb(0, 0, 0);"><strong>Example:</strong><code>count=&quot;10&quot;</code> (string) vs <code>count={countValue}</code> (number when <code>countValue</code> is a number).</span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p></section><section><h2><span style="color:rgb(0, 0, 0);">Best Practices</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
<ul><li><span style="color:rgb(0, 0, 0);">Use <code>@api</code> for all properties that should be configurable by parent components.</span></li><li><span style="color:rgb(0, 0, 0);">Favor property binding (<code>{}</code>) over static string attributes for non-string data.</span></li><li><span style="color:rgb(0, 0, 0);">Use descriptive property names and kebab-case in markup.</span></li><li><span style="color:rgb(0, 0, 0);">Make attributes immutable where possible — prefer passing new object references instead of mutating children state.</span></li><li><span style="color:rgb(0, 0, 0);">Validate inputs inside child components (defensive coding).</span></li><li><span style="color:rgb(0, 0, 0);">Document public attributes in component README or metadata comments.</span></li></ul><div><span style="color:rgb(0, 0, 0);"><br/></span></div><div></div></section><section><h2><span style="color:rgb(0, 0, 0);">Common Mistakes &amp; How to Fix Them</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
<table><thead><tr><th><span style="color:rgb(0, 0, 0);">Problem</span></th><th><span style="color:rgb(0, 0, 0);">Cause</span></th><th><span style="color:rgb(0, 0, 0);">Fix</span></th></tr></thead><tbody><tr><td><span style="color:rgb(0, 0, 0);">Child not updating when parent changes</span></td><td><span style="color:rgb(0, 0, 0);">Mutating parent array/object instead of assigning new reference</span></td><td><span style="color:rgb(0, 0, 0);">Use spread or new object: <code>this.items = [...this.items]</code></span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">Boolean attribute appears as string</span></td><td><span style="color:rgb(0, 0, 0);">Passed as static attribute: <code>hidden=&quot;false&quot;</code></span></td><td><span style="color:rgb(0, 0, 0);">Bind to boolean property: <code>hidden={isHidden}</code></span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">Event not received by parent</span></td><td><span style="color:rgb(0, 0, 0);">CustomEvent not configured with <code>composed:true</code> (shadow DOM)</span></td><td><span style="color:rgb(0, 0, 0);">Dispatch with <code>new CustomEvent('name', { detail, bubbles:true, composed:true })</code></span></td></tr></tbody></table></section><hr/><section><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h2><span style="color:rgb(0, 0, 0);">Deploying from LightningStudio</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
<ol><li><span style="color:rgb(0, 0, 0);">Save component files in your Salesforce DX project folder (force-app/main/default/lwc/...)</span></li><li><span style="color:rgb(0, 0, 0);">Open Terminal in LightningStudio</span></li><li><span style="color:rgb(0, 0, 0);">Authorize org: <code>sfdx force:auth:web:login -a myOrg</code></span></li><li><span style="color:rgb(0, 0, 0);">Deploy component: <code>sfdx force:source:deploy -p force-app/main/default/lwc/myCard</code></span></li><li><span style="color:rgb(0, 0, 0);">Add component to Lightning App Builder or record page (if exposed via meta)</span></li></ol><p><span style="color:rgb(0, 0, 0);">If LightningStudio provides a GUI deploy, you can use that for one-click deployment. Always test in a sandbox first.</span></p></section></div>
</div><div class="zpelement zpelem-carousel " data-element-id="elm_byTBvaroUVlqNQzB3l0WEQ" data-element-type="carousel" data-currentslide-index="0" data-transition="slide_left" data-zs-autoslide="false" data-zs-slider="min-height-el: zpcarousel-content-container;arrow-cont: zpcarousel-arrows-container; active-controller: zpcarousel-controller-active; controller-cont: zpcarousel-controller-container; controller: zpcarousel-controller; right-arrow: zpcarousel-arrow-right; left-arrow: zpcarousel-arrow-left;active-slide:zpcarousel-content-active; slide: zpcarousel-content; slides-cont: zpcarousel-content-container;content-cont : zpcarousel-content-inner; background: false;slide-pause-btn:zpcarousel-pause-btn;slide-play-btn:zpcarousel-play-btn;"><div class="zpcarousel-container zpcarousel-style-01"><style></style><div class="zpcarousel-content-container"><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_-dxt0NaImCeUb0jHYGM2Ow" data-slide-name="Slide 1"><div class="zpcarousel-content-inner"><div data-element-id="elm_4Jy8AFUbkHw4IXVthKXcwg" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_eO9573nNV2JPmlpkVUhEdg" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_SiJIPTsI0iZNgc4tajDCvw" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Dharmesh R.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>The explanations are clear, and the repetition really helps to reinforce the concepts. It covers everything in detail, from the basics to more advanced topics. The course includes in-depth examples that make complex ideas easy to understand. Overall, I’m really impressed and can’t wait to explore more!</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_NZnF622zgu6xIrpJo386_g" data-slide-name="Slide 2"><div class="zpcarousel-content-inner"><div data-element-id="elm_hHh-tqVupL3HL8KYT1kf9Q" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm__dSB6W4LHkpHg36wJiyBsw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_GHUL9IsOVpazUCwTJjdzMw" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Jermaine L.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>Taking this course like help me acquire all the knowledge and skills I need to excel and optimize my performance to fulfilling my operational duties in my current role as an email marketing specialist</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_v3u8hhd_AsZxORmwnoA_2g" data-slide-name="Slide 3"><div class="zpcarousel-content-inner"><div data-element-id="elm_DD4MpNQtMS1HKlrokaUzeA" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_k40UvPeZYpsuUJLZc3IAZw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_t0XTYi6tHJ5BJkc4CqF21g" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Sumit N.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>Awesome explanation. He keep repeating which helps to remind/refresh the concepts. Loved it</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_hy7Rbr8nliB0X9rRDa5aow" data-slide-name="Slide 4"><div class="zpcarousel-content-inner"><div data-element-id="elm_QL8Q-Kw-ITIb4l-A8xb-mA" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_OAbkKPefCMhNQsVayTvj2w" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_NgbzA5biiFsJ40IvZ4dfyg" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Varun V.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>It's a great course that covers everything you need to know. After almost finishing, I feel confident using the SDC platform. Definitely a 5-star experience!</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_aJlL0IwMmDJL1pq3VxCvig" data-slide-name="Slide 5"><div class="zpcarousel-content-inner"><div data-element-id="elm_WVzZlT8_Ygn-L_HvDcrbhA" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_nz3RpOWIfz2pKHIP8PmbXw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_cdESQ-gJxvN41XpT7ZaAkg" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Prajakta Nimba S.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>This course is perfect for anyone looking to build a solid foundation in Salesforce Data Cloud. The content is well-structured, easy to follow, and packed with real-world examples that make the concepts practical</span></span></p></div>
</div></div></div></div></div></div></div><div class="zpcarousel-arrows-container zpcarousel-arrow-type-01" data-arrow-style="2"><div class="zpcarousel-arrow-left" tabindex="0" role="button" aria-label="Previous"><svg aria-hidden="true" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" class="svg-icon-18px"><path d="M0,16c0,0.3,0.1,0.5,0.3,0.7l9.9,10c0.4,0.4,1,0.4,1.4,0c0.4-0.4,0.4-1,0-1.4L3.4,17H31 c0.6,0,1-0.5,1-1s-0.4-1-1-1H3.4l8.2-8.3c0.4-0.4,0.4-1,0-1.4c-0.4-0.4-1-0.4-1.4,0l-9.9,10C0.1,15.5,0,15.7,0,16z"></path></svg></div>
<div class="zpcarousel-arrow-right" tabindex="0" role="button" aria-label="Next"><svg aria-hidden="true" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" class="svg-icon-18px"><path id="arrow-right-style2-Arrow_Forward" d="M32,16c0-0.3-0.1-0.5-0.3-0.7l-9.9-10c-0.4-0.4-1-0.4-1.4,0c-0.4,0.4-0.4,1,0,1.4 l8.2,8.3H1c-0.6,0-1,0.5-1,1s0.4,1,1,1h27.6l-8.2,8.3c-0.4,0.4-0.4,1,0,1.4c0.4,0.4,1,0.4,1.4,0l9.9-10C31.9,16.5,32,16.3,32,16z"></path></svg></div>
</div><div class="zpcarousel-controller-container zpcarousel-controller-type-01"><div class="zpcarousel-controller zpcarousel-controller-active" data-slide-index="0"></div>
<div class="zpcarousel-controller " data-slide-index="1"></div><div class="zpcarousel-controller " data-slide-index="2"></div>
<div class="zpcarousel-controller " data-slide-index="3"></div><div class="zpcarousel-controller " data-slide-index="4"></div>
</div></div></div><div data-element-id="elm_Vu-0h7FBeerqTMPmZaWlug" data-element-type="heading" class="zpelement zpelem-heading "><style></style><h2
 class="zpheading zpheading-style-none zpheading-align-left zpheading-align-mobile-left zpheading-align-tablet-left " data-editor="true"><span><span style="color:rgb(0, 0, 0);">Frequently Asked Questions (FAQ)</span><br/></span></h2></div>
<div data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA" data-element-type="accordion" class="zpelement zpelem-accordion " data-tabs-inactive="false" data-icon-style="1"><style> [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion, [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content{ border-style:solid; border-color: !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content.zpaccordion-active-content:last-of-type{ border-block-end-width:1px !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion.zpaccordion-active + .zpaccordion-content{ border-block-start-color: transparent !important; } @media all and (min-width: 768px) and (max-width:991px){ [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion, [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content{ border-style:solid; border-color: !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content:last-of-type{ border-block-end-width:1px !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion.zpaccordion-active + .zpaccordion-content{ border-block-start-color: transparent !important; } } @media all and (max-width:767px){ [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion, [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content{ border-style:solid; border-color: !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content:last-of-type{ border-block-end-width:1px !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion.zpaccordion-active + .zpaccordion-content{ border-block-start-color: transparent !important; } } </style><div class="zpaccordion-container zpaccordion-style-01 zpaccordion-with-icon zpaccord-svg-icon-1 zpaccordion-icon-align-left "><div data-element-id="elm_avqPnRbxn96EwANShYaFjg" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="1. What is the difference between an attribute and a property in LWC?" data-content-id="elm_X8MB5lkAUEcGoYBtGrpljg" style="margin-top:0;" tabindex="0" role="button" aria-label="1. What is the difference between an attribute and a property in LWC?"><span class="zpaccordion-name">1. What is the difference between an attribute and a property in LWC?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_X8MB5lkAUEcGoYBtGrpljg" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_u5Cj1v0VUadpxrxv948nyw" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_7ezNrxV4FkYz7RGU1G0BtQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_hae4_dzBKBBmMQbSfRCyug" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p><strong style="color:rgb(0, 0, 0);"></strong></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p><span style="color:rgb(0, 0, 0);"><span></span></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"><span></span></span></p><div><p></p><div><p></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);">In markup, attributes are the HTML syntax used to pass values to a component. In JS, properties (often decorated with&nbsp;<code>@api</code>) are the variables that receive those values. Use property binding (<code>{}</code>) for non-string types.</span><br/></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div>
</div></div></div></div></div><div data-element-id="elm_2U5i1G2PT4th-0HwQ_qYMg" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="2. How do I expose a method to a parent component?" data-content-id="elm_HWiLrHq626LLO7HEwZZO0A" style="margin-top:0;" tabindex="0" role="button" aria-label="2. How do I expose a method to a parent component?"><span class="zpaccordion-name">2. How do I expose a method to a parent component?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_HWiLrHq626LLO7HEwZZO0A" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_EsUHLPDiEOSRoxW1Va1vSQ" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_e_hMh4qQPANv9Gq71QOCbQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_yDDgYpCDh88L_B4yVqVDpw" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p style="color:rgb(0, 0, 0);"><span></span></p><div><p style="color:rgb(0, 0, 0);"></p><div><p style="color:rgb(0, 0, 0);"></p><div><p style="color:rgb(0, 0, 0);"></p><div><p style="color:rgb(0, 0, 0);"></p><div><p style="color:rgb(0, 0, 0);"></p><div><p style="color:rgb(0, 0, 0);"></p><div><p style="color:rgb(0, 0, 0);"></p><div><p></p><div><p></p><div><div><p>Use&nbsp;<code>@api</code>&nbsp;on a function in child JS and call it via&nbsp;<code>this.template.querySelector('c-child').publicMethod()</code>&nbsp;from the parent.</p></div></div><p></p></div><p></p></div><p style="color:rgb(0, 0, 0);"></p></div><p style="color:rgb(0, 0, 0);"></p></div><p style="color:rgb(0, 0, 0);"></p></div><p style="color:rgb(0, 0, 0);"></p></div><p style="color:rgb(0, 0, 0);"></p></div><p style="color:rgb(0, 0, 0);"></p></div><p style="color:rgb(0, 0, 0);"></p></div><p></p></div></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div></div></div></div></div></div></div>
</div></div></div></div></div><div data-element-id="elm_z819rp9QtsimO7OBe5fUQQ" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="3. Do attributes trigger change detection automatically?" data-content-id="elm_G0J2WJbaranPy8N5RGud_Q" style="margin-top:0;" tabindex="0" role="button" aria-label="3. Do attributes trigger change detection automatically?"><span class="zpaccordion-name">3. Do attributes trigger change detection automatically?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_G0J2WJbaranPy8N5RGud_Q" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_NLdjpQsYYYsfKNQ4rWhxJg" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_mCo9PctebWjYnQx_burGTQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_PUMBoTZ3jG3CqnmnOda7FA" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><div><p><span style="color:rgb(0, 0, 0);">Yes — when a public property reference changes, LWC re-renders the component. Mutating nested objects/arrays requires assigning a new reference to trigger reactivity.</span></p></div></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><code></code><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div>
</div></div></div></div></div><div data-element-id="elm_MrzO9Mu2yvjD1yOveoN1ag" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="4. Why is my CustomEvent not reaching the parent?" data-content-id="elm_VCfqx-I0okQtrLLtQgg6uQ" style="margin-top:0;" tabindex="0" role="button" aria-label="4. Why is my CustomEvent not reaching the parent?"><span class="zpaccordion-name">4. Why is my CustomEvent not reaching the parent?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_VCfqx-I0okQtrLLtQgg6uQ" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_83IdZWSoCFzucCnLahu5cw" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_lHAb9U1G1dgp1V6c444ATQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_Q-zMCoK5NRejxdtEjZeb0g" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p style="color:rgb(0, 0, 0);"></p><div><p style="color:rgb(0, 0, 0);"></p><div><p style="color:rgb(0, 0, 0);"></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><div><p><span style="color:rgb(0, 0, 0);">Ensure the event uses&nbsp;<code>bubbles: true</code>&nbsp;and&nbsp;<code>composed: true</code>&nbsp;if you need to cross shadow DOM boundaries.</span></p></div></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p style="color:rgb(0, 0, 0);"></p></div><p style="color:rgb(0, 0, 0);"></p></div><p style="color:rgb(0, 0, 0);"></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div>
</div></div></div></div></div><div data-element-id="elm_tbTU4vUzVyHxec4fh5treA" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="5. Can I set default values for attributes?" data-content-id="elm_ytAT6ZF-UgNskNSKR7FuZQ" style="margin-top:0;" tabindex="0" role="button" aria-label="5. Can I set default values for attributes?"><span class="zpaccordion-name">5. Can I set default values for attributes?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_ytAT6ZF-UgNskNSKR7FuZQ" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_I_fDz0ybSUu9nfzEuPrMMg" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_LJZ6EEKHjUSNa8ZMVwDadw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_zjpsXejtTlBuGOWTiUljMA" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><div><p></p><div><div><p><span style="color:rgb(0, 0, 0);">Yes — initialize&nbsp;<code>@api</code>&nbsp;properties with defaults in the child JS file (example above with&nbsp;<code>@api title = 'Default Title'</code>).</span></p></div></div><p></p></div></div>
</div></div></div></div></div></div></div><div data-element-id="elm_8m4TfeROM6fQN9AHueEupg" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p><span style="font-family:Poppins, sans-serif;font-size:40px;font-weight:600;color:rgb(0, 0, 0);">Conclusion</span></p><div><div><span style="color:rgb(0, 0, 0);"><strong></strong></span></div><div><p></p></div>
</div><div><p></p><div><section><p></p></section></div></div><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p><div><p></p><div><p></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p><div><p></p><div><p></p><div><p></p><div><p></p></div></div></div></div></div></div></div></div></div><div><p></p><div><p></p><div><div><p></p><div></div></div><div><div><div><div><div><div><div><div><div><div><span style="color:rgb(0, 0, 0);">Lightning Web Components (LWC) is a powerful, modern framework that brings the best of JavaScript and web standards into Salesforce. With its lightweight architecture and high performance, LWC has quickly become the backbone of Salesforce UI development. Whether you are a beginner or an experienced developer, learning LWC will significantly boost your Salesforce career and open multiple job opportunities worldwide.</span></div></div></div></div></div></div></div></div></div></div></div></div></div><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
</div></div></div><p></p><div><div><h2></h2></div><div><div><h2><span style="color:rgb(0, 0, 0);">More SFDC Resources</span></h2></div><span style="color:rgb(0, 0, 0);"><br/></span><div><span style="font-style:italic;color:rgb(0, 0, 0);"><p>Start your SFMC journey today — join our&nbsp;<strong><a href="https://www.peoplewoo.com/" target="_blank" rel="">Live Training</a></strong>&nbsp;</p><p>Need help? Chat with us on&nbsp;<strong><a href="https://wa.me/%2B917875494672" rel="">WhatsApp</a></strong>&nbsp;anytime.</p><p>Learn. Practice. Get Certified. Succeed with&nbsp;<strong><a href="https://www.youtube.com/%40peoplewoo" target="_blank" rel="">Peoplewoo Skills</a></strong><a href="https://www.youtube.com/redirect?event=video_description&amp;redir_token=QUFFLUhqbUhyQUhpemJaOGZXR1RFRmxub3lNZlR4QW43QXxBQ3Jtc0ttMFhRMWtISFBVdlhJYlNab3NZS0hRd0RrQ0hwaTNGVEVhX2hVWUo3TktGN3VGa2FIWWtsQ1QtM0wxWG1ud0ZEeG02OG1CU3ZvVkE3ekNUUjZoaWFxZmhsUHNMR2diOEl5Wm5ROEpiUTVJSkJfQjF1MA&amp;q=https%3A%2F%2Fchat.whatsapp.com%2FKGLPRc9tofo0oiyd9oQW4E&amp;v=d_fgnADOmiQ" target="_blank" rel="">.</a></p></span></div></div><div><span style="font-style:italic;color:rgb(0, 0, 0);"><p><a href="https://www.youtube.com/%40peoplewoo" rel=""></a></p></span></div>
</div><p></p></div><p></p></div></div></div><div data-element-id="elm_KnMYXjQPWbIKC85JEm98qw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-4 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div class="zpelement zpelem-newsletter " data-list-id="" data-integ-type="" data-element-id="elm_eV_tPTfOVvRvGG8gHurC3Q" data-element-type="newsletter"><style type="text/css"></style><div class="zpnewsletter-container zpnewsletter-style-01 "><h2 class="zpheading zpheading-align-center zpnewsletter-heading" data-editor="true">Subscribe to our newsletter</h2><p class="zptext zptext-align-center zpnewsletter-desc" data-editor="true"> Stay informed about our latest updates through email. Subscribe here.</p><form class="zpform-container zpnewsletter-input-container"><label for="Email_elm_eV_tPTfOVvRvGG8gHurC3Q" class="zs-visually-hidden">Email</label><input type="text" id="Email_elm_eV_tPTfOVvRvGG8gHurC3Q" name="email" placeholder="Email" class="zpnewsletter-email-input-field"/><button type="submit" class="zpbutton zpnewsletter-button zpbutton-type-primary zpbutton-size-md">Subscribe</button></form></div>
</div><div data-element-id="elm_3-a_z2EN2Rdvo4WVGz-Y1Q" itemscope="" data-element-type="socialprofile" class="zpelement zpelem-socialprofile" data-element-id="elm_3-a_z2EN2Rdvo4WVGz-Y1Q"><style type="text/css"></style><div data-socialprofile_container class="zpsocialprofile-container zpsocialprofile-size-md zpsocialprofile-halign-center zpsocialprofile-align-mobile-center zpsocialprofile-align-tablet-center zpsocialprofile-style-none zpsocialprofile-type-color "><a href="https://www.linkedin.com/company/peoplewoo" class="zpsocialprofile-wrapper zpsocialprofile-linkedin" target="_blank" aria-label="LinkedIn"><svg aria-hidden="true" class="zpsocialprofile" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><path d="M64 4.706v54.588A4.706 4.706 0 0 1 59.294 64H4.706A4.706 4.706 0 0 1 0 59.294V4.706A4.706 4.706 0 0 1 4.706 0h54.588A4.706 4.706 0 0 1 64 4.706zM18.824 24.47H9.412v30.117h9.412V24.471zm.847-10.353a5.421 5.421 0 0 0-5.384-5.46h-.17a5.459 5.459 0 0 0 0 10.918 5.421 5.421 0 0 0 5.554-5.289v-.17zm34.917 22.174c0-9.054-5.76-12.574-11.482-12.574a10.73 10.73 0 0 0-9.525 4.856h-.263v-4.103H24.47v30.117h9.411V38.57a6.25 6.25 0 0 1 5.647-6.738h.358c2.993 0 5.214 1.882 5.214 6.625v16.132h9.412l.075-18.296z"/></svg></a><a href="https://www.youtube.com/@peoplewoo" class="zpsocialprofile-wrapper zpsocialprofile-youtube" target="_blank" aria-label="YouTube"><svg aria-hidden="true" class="zpsocialprofile" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><path d="M32.786 10l.106.001.392.002c1.94.009 6.896.05 11.873.237l.765.03c4.589.187 9.063.504 11.068 1.04 2.71.73 4.84 2.86 5.56 5.56 1.204 4.505 1.301 13.515 1.31 14.939v.382c-.009 1.424-.106 10.434-1.31 14.939a7.885 7.885 0 0 1-5.56 5.56c-4.455 1.19-21.107 1.3-24.098 1.309h-.923c-2.99-.01-19.635-.118-24.099-1.309a7.885 7.885 0 0 1-5.56-5.56c-.401-1.502-.68-3.504-.873-5.559l-.058-.65c-.314-3.688-.368-7.394-.377-8.552L1 32.124v-.194-.054l.002-.245c.009-1.158.063-4.864.377-8.552l.058-.65c.193-2.055.472-4.057.873-5.559a7.885 7.885 0 0 1 5.56-5.56c4.296-1.146 19.878-1.29 23.706-1.307L31.97 10h.105zM26.15 22.57v18.86L42.48 32l-16.33-9.43z"/></svg></a><a href="https://www.instagram.com/peoplewoo_consulting/" class="zpsocialprofile-wrapper zpsocialprofile-instagram" target="_blank" aria-label="Instagram"><svg aria-hidden="true" class="zpsocialprofile" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient x1="72.5875139%" y1="0%" x2="28.281045%" y2="106.524963%" id="linearGradient-1"><stop stop-color="#9A1DF1" offset="0%"></stop><stop stop-color="#ED1E64" offset="49.3618943%"></stop><stop stop-color="#FFD002" offset="100%"></stop></linearGradient><path d="M18.7470755,0.221595251 C15.3422244,0.382299247 13.0166948,0.927668835 10.9845413,1.72394402 C8.8808805,2.5440464 7.09761014,3.64310557 5.32364538,5.42434073 C3.54758782,7.20661909 2.45687425,8.99304465 1.64301187,11.0988238 C0.855031083,13.1361614 0.321066295,15.4627981 0.170711099,18.8697484 C0.0214311023,22.2829708 -0.012802497,23.3716107 0.00383750267,32.0611721 C0.0204135023,40.7496967 0.0587623014,41.8403975 0.221527098,45.254631 C0.384285494,48.6585158 0.927619882,50.9830597 1.72388866,53.0162565 C2.54502785,55.1199428 3.64296062,56.9022276 5.42521338,58.6772547 C7.20645494,60.4522883 8.9939045,61.5419779 11.1006629,62.3569282 C13.1359204,63.1438722 15.46353,63.6799042 18.8694627,63.8291842 C22.2826082,63.9795458 23.3722466,64.0127042 32.0596384,63.9961282 C40.7511454,63.9795458 41.8408478,63.941165 45.2539933,63.7794178 C48.6588444,63.616653 50.9822875,63.0712898 53.0165275,62.2770946 C55.1201883,61.4538563 56.9034586,60.3579395 58.6774234,58.5756547 C60.4513945,56.7943876 61.5421081,55.0069188 62.3560345,52.9001285 C63.1440153,50.8648453 63.6800089,48.5372038 63.8282777,45.1333446 C63.9775577,41.7180679 64.0128665,40.6273351 63.9962265,31.9388169 C63.9796441,23.2492555 63.9402841,22.1606092 63.7785369,18.7484684 C63.6167897,15.3414861 63.0714329,13.0179854 62.2761753,10.9837454 C61.4540249,8.88005905 60.3571033,7.0987919 58.5758618,5.32274074 C56.7946202,3.54875038 55.0071771,2.4559312 52.9004123,1.64411682 C50.8641371,0.856129637 48.5375324,0.319048049 45.1316061,0.171822452 C41.7184606,0.0204496555 40.6288222,-0.0127087437 31.9383264,0.00387365592 C23.2499298,0.0204560555 22.160285,0.0577936547 18.7470755,0.221595251 M19.1203747,58.0696835 C16.0006051,57.9338499 14.3064996,57.4154436 13.1774308,56.9810372 C11.682346,56.4024772 10.6154853,55.7088452 9.49261809,54.5942852 C8.37184371,53.4755524 7.67612533,52.4117765 7.09241974,50.9198021 C6.65381495,49.7906885 6.12611576,48.0986182 5.97993337,44.9788358 C5.82129017,41.6060871 5.78502777,40.5941383 5.76945657,32.0497481 C5.75287417,23.5074443 5.78394617,22.4954955 5.93120377,19.1196428 C6.06491897,16.0019213 6.58648055,14.3057037 7.01983094,13.1776334 C7.59834613,11.6804686 8.28988531,10.6156558 9.40655089,9.49280784 C10.5252389,8.36992787 11.5889956,7.67628948 13.081994,7.0925775 C14.2100452,6.65191191 15.9021283,6.12831512 19.0208227,5.98007832 C22.3956194,5.82038552 23.4064738,5.78618392 31.9486944,5.76960153 C40.4929438,5.75298713 41.5048734,5.78307992 44.8807453,5.93134872 C47.9983644,6.06715032 49.6945564,6.58350231 50.8216028,7.0199951 C52.3176987,7.59852308 53.3845595,8.28801427 54.5064091,9.40674704 C55.628201,10.5254798 56.323913,11.5871694 56.9076186,13.0832846 C57.3482458,14.2082189 57.8718362,15.9023821 58.0190938,19.0201036 C58.1797594,22.3949387 58.2160858,23.4068555 58.231593,31.9491913 C58.2481754,40.4935879 58.2171034,41.5054983 58.0688346,44.8792902 C57.933033,47.9990726 57.4156442,49.6942725 56.9802074,50.8243973 C56.4016858,52.3184581 55.710089,53.3853316 54.5924123,54.5082116 C53.4747995,55.6269444 52.4110427,56.3246916 50.9169691,56.9084356 C49.7910044,57.348026 48.0968988,57.8726723 44.9802333,58.0209411 C41.6055006,58.1795587 40.5945822,58.2158467 32.0492576,58.2314179 C23.507037,58.2480131 22.4961826,58.2158659 19.1203747,58.0696835 M45.2073489,14.8946189 C45.2114717,17.0138765 46.9346204,18.729806 49.053846,18.7256663 C51.1740891,18.7215116 52.8900251,16.9993549 52.8869253,14.8800973 C52.8827483,12.7608398 51.1595931,11.043899 49.03935,11.0480387 C46.9191132,11.052187 45.2031773,12.7753614 45.2073489,14.8946189 M15.5693094,32.0310857 C15.5869347,41.1063495 22.957565,48.4469894 32.0305952,48.4293954 C41.1046942,48.4117446 48.4493852,41.0430983 48.4318231,31.9678665 C48.414134,22.8957323 41.0424926,15.5509133 31.967376,15.5685072 C22.8942818,15.5861645 15.5516836,22.9579403 15.5693094,32.0310857 M21.3328633,32.0196937 C21.3225058,26.1295435 26.0897377,21.344654 31.978768,21.3342528 C37.868867,21.3228812 42.6547101,26.0880651 42.6661227,31.9792585 C42.6775581,37.870452 37.9103198,42.6542983 32.0192032,42.6657427 C26.1301793,42.6771143 21.3442722,37.9108872 21.3328633,32.0196937" id="path-2"></path></defs><g stroke="none" stroke-width="1" fill-rule="evenodd"><mask fill="white"><use xlink:href="#path-2"></use></mask><use class="cl-path-inherit" fill="url(#linearGradient-1)" xlink:href="#path-2"></use></g></svg></a><a href="https://wa.me/+917875494672" class="zpsocialprofile-wrapper zpsocialprofile-whatsapp" target="_blank" aria-label="WhatsApp"><svg aria-hidden="true" class="zpsocialprofile" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><defs><linearGradient x1="49.9999983%" y1="100%" x2="49.9999983%" y2="0.00237659529%" id="wtlinearGradient-1"><stop stop-color="#F9F9F9" offset="0%"></stop><stop stop-color="#FFFFFF" offset="100%"></stop></linearGradient></defs><g stroke="none" stroke-width="1" fill-rule="evenodd"><g fill-rule="nonzero"><path class="cl-path-transparent" d="M1.10771574,62.8926967 L5.4728797,47.0284478 C2.78074848,42.3847708 1.36440022,37.1174751 1.3659281,31.7224137 C1.37356752,14.8421228 15.1734138,1.1088243 32.1283401,1.1088243 C40.3575222,1.11186634 48.0825026,4.30144735 53.8884609,10.0874112 C59.6974751,15.873375 62.8938079,23.5651781 62.8907543,31.745229 C62.8831127,48.6255199 49.0832664,62.3603394 32.1283401,62.3603394 C32.1283401,62.3603394 32.1283401,62.3603394 32.1283401,62.3603394 L32.1145892,62.3603394 C26.9656208,62.3588184 21.9067976,61.0720346 17.4148193,58.633838 L1.10618786,62.8911757 L1.10771574,62.8926967 Z" fill="#25D266"></path><path class="cl-path-inherit" d="M32.1344517,0 C40.6585153,0.00304204197 48.6585147,3.30669962 54.6753211,9.30104333 C60.6905995,15.295387 64.0030515,23.264016 64,31.7376239 C63.9924328,49.0469187 49.9804471,63.1660029 32.660306,63.4466537 L32.1344517,63.4509114 L32.1344517,63.4509114 L32.1207007,63.4509114 C26.7883863,63.4493904 21.5477449,62.116976 16.893811,59.5905602 L0.00152788378,64 L0,64 L4.52100811,47.5668893 C1.73262021,42.7574209 0.265851778,37.3015186 0.267379662,31.7117665 C0.27501908,14.2261093 14.5683718,0 32.1344517,0 Z M32.143619,5.35703591 C17.5339943,5.35703591 5.65316999,17.179932 5.6470572,31.7132875 C5.64553057,36.6931103 7.04507211,41.5436462 9.69595047,45.7401431 L10.3269665,46.7379328 L7.65011409,56.464862 L17.6745596,53.8487059 L17.6760875,53.8487059 L18.6432379,54.4190888 C22.7089366,56.8207809 27.37051,58.0908335 32.1237565,58.0938755 L32.1344517,58.0938755 C46.7318533,58.0938755 58.6142055,46.2694584 58.6203176,31.7345818 C58.6218449,24.6907337 55.8701262,18.0682083 50.8693626,13.0868646 C45.868599,8.10552083 39.2192487,5.36007795 32.143619,5.35703591 Z M20.8510299,17.0688705 C21.3827335,17.0688705 21.9129092,17.0673765 22.3773858,17.0871497 C22.9457586,17.1099651 23.5737188,17.1358224 24.1695935,18.4560686 L24.1695935,18.4560686 C24.8785316,20.0242413 26.4262779,23.9439124 26.6249028,24.3408988 C26.8235276,24.7378853 26.9564535,25.2002757 26.6906018,25.729591 C26.42475,26.2589063 26.2918241,26.5889678 25.8945743,27.0513582 C25.4957966,27.5152696 25.057294,28.0856525 24.6997692,28.4400504 C24.2994636,28.8339948 23.8854071,29.2644438 24.3498838,30.0568957 C24.8143605,30.8508686 26.4125269,33.4457304 28.7792189,35.5462604 C31.8212355,38.2460727 34.3865524,39.0826342 35.1825798,39.4796207 C35.9786073,39.8766072 36.4430839,39.8096822 36.9075606,39.2803669 C37.3720373,38.7525727 38.8983932,36.966894 39.4285688,36.1744421 C39.9602724,35.3804691 40.4904481,35.512798 41.2207765,35.7774556 C41.9511049,36.0405922 45.8655432,37.9585997 46.6615706,38.3555862 C47.4575981,38.7525727 47.9893016,38.9503054 48.1879265,39.2803669 C48.3865514,39.6119495 48.3865514,41.1983744 47.7234499,43.0494569 C47.0588204,44.9005395 43.8090116,46.6846971 42.3483547,46.8170259 C42.2952399,46.8218379 42.2422464,46.8271688 42.189112,46.8328475 L42.0290247,46.850756 C40.6602396,47.0089406 39.0295689,47.2820712 32.7929696,44.8336146 C24.6997692,41.6562017 19.5905258,33.3970578 19.1917482,32.8692635 C18.7944984,32.3399482 15.9404115,28.5708582 15.9404115,24.6709604 C15.9404115,20.7710626 17.996943,18.8530551 18.7272715,18.0606032 C19.4575999,17.2681512 20.3193264,17.0688705 20.8510299,17.0688705 Z" fill="url(#wtlinearGradient-1)"></path></g></g></svg></a></div>
</div></div></div></div></div></div> ]]></content:encoded><pubDate>Tue, 02 Dec 2025 17:58:05 +0530</pubDate></item><item><title><![CDATA[Software Installation and Setup for LWC | Beginner’s Guide | Peoplewoo Skills]]></title><link>https://www.peoplewoo.com/blogs/post/software-installation-and-setup-for-lwc-beginner-s-guide-peoplewoo-skills</link><description><![CDATA[ Lightning Web Components (LWC) is Salesforce’s modern framework for building fast, reusable, and powerful UI components. Before you start coding, you ]]></description><content:encoded><![CDATA[<div class="zpcontent-container blogpost-container "><div data-element-id="elm_VSFK6u_qTROrUlbkwFcnHQ" data-element-type="section" class="zpsection "><style type="text/css"></style><div class="zpcontainer-fluid zpcontainer"><div data-element-id="elm_AX1H_FWwTISZjTAoLhORpg" data-element-type="row" class="zprow zprow-container zpalign-items- zpjustify-content- " data-equal-column=""><style type="text/css"></style><div data-element-id="elm_QmO3R2StSMOPjvWG4mBR2w" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-8 zpcol-sm-12 zpalign-self- "><style type="text/css"></style><div data-element-id="elm_zt8AQ9V5TPuN5ANXWKA81A" data-element-type="image" class="zpelement zpelem-image "><style> @media (min-width: 992px) { [data-element-id="elm_zt8AQ9V5TPuN5ANXWKA81A"] .zpimage-container figure img { width: 730px ; height: 677.66px ; } } </style><div data-caption-color="" data-size-tablet="" data-size-mobile="" data-align="center" data-tablet-image-separate="false" data-mobile-image-separate="false" class="zpimage-container zpimage-align-center zpimage-tablet-align-center zpimage-mobile-align-center zpimage-size-fit zpimage-tablet-fallback-fit zpimage-mobile-fallback-fit hb-lightbox " data-lightbox-options="
                type:fullscreen,
                theme:dark"><figure role="none" class="zpimage-data-ref"><span class="zpimage-anchor" role="link" tabindex="0" aria-label="Open Lightbox" style="cursor:pointer;"><picture><img class="zpimage zpimage-style-none zpimage-space-none " src="/Group%20300.png" size="fit" data-lightbox="true"/></picture></span></figure></div>
</div><div data-element-id="elm_pfjc3-aGJQ56E4Rt5J6YrA" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><section><p><span style="color:rgb(0, 0, 0);"></span></p></section><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p></div>
<div><p></p><div><header><p></p><div><section><p><span style="color:rgb(0, 0, 0);"></span></p></section><div><p></p><div><section><p><span style="color:rgb(0, 0, 0);"></span></p></section><div><section><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);">Lightning Web Components (LWC) is Salesforce’s modern framework for building fast, reusable, and powerful UI components. Before you start coding, you must set up the required tools on your system.</span></p><p><span style="color:rgb(0, 0, 0);">This guide covers every step—from software installation to Salesforce DX setup—so beginners can start LWC development smoothly.</span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><p></p><div><div><div><section><h2><span style="color:rgb(0, 0, 0);">What are Lightning Web Components (LWC)?</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);">LWC is a lightweight framework built using modern JavaScript and native browser APIs. Unlike Aura Components, LWC relies heavily on standard web technologies such as:</span></p><ul><li><span style="color:rgb(0, 0, 0);">JavaScript (ES6+)</span></li><li><span style="color:rgb(0, 0, 0);">HTML</span></li><li><span style="color:rgb(0, 0, 0);">CSS</span></li><li><span style="color:rgb(0, 0, 0);">Web Components Standards</span></li><li><span style="color:rgb(0, 0, 0);">Shadow DOM &amp; Custom Elements</span></li></ul><p><span style="color:rgb(0, 0, 0);">This approach makes LWC fast, scalable, and future-proof — helping Salesforce developers build UI with the power of modern JS frameworks.</span></p></section></div></div></div><p></p></div></div><pre><span style="color:rgb(0, 0, 0);"><code></code></span></pre></div><p></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p></div></div></div></div></div></section></div></div></div></div></header></div><p></p><p></p><div><h2><span style="color:rgb(0, 0, 0);">Watch Our Video Tutorial</span></h2></div>
<p></p></div><section><div><h2><span style="color:rgb(0, 0, 0);"></span></h2></div>
<p></p></section></div><p></p></div></div><div data-element-id="elm_qnfTalLDsKUWbfUALkvvzQ" data-element-type="video" class="zpelement zpelem-video "><style type="text/css"> @media (max-width: 767px) { [data-element-id="elm_qnfTalLDsKUWbfUALkvvzQ"].zpelem-video iframe.zpvideo{ width:560px !important; height:315px !important; } } @media all and (min-width: 768px) and (max-width:991px){ [data-element-id="elm_qnfTalLDsKUWbfUALkvvzQ"].zpelem-video iframe.zpvideo{ width:560px !important; height:315px !important; } } </style><div class="zpvideo-container zpiframe-align-left zpiframe-mobile-align-center zpiframe-tablet-align-center"><iframe class="zpvideo " width="2000" height="315" src="//www.youtube.com/embed/QsKm46u5kjM?enablejsapi=1" frameborder="0" allowfullscreen id=youtube-video-1 data-api=youtube></iframe></div>
</div><div data-element-id="elm_QlHXRdluq-pxYjAQryfSiQ" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><h1></h1><p><span style="font-family:Poppins, sans-serif;font-size:40px;font-weight:600;color:rgb(0, 0, 0);">Step 1: Install Google Chrome</span></p><p><span style="color:rgb(0, 0, 0);"> You will use Chrome for testing and debugging your LWC components. </span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h3><span style="color:rgb(0, 0, 0);">Download:</span></h3><p><span style="color:rgb(0, 0, 0);">Go to Google Chrome → Download → Install.</span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h2><span style="color:rgb(0, 0, 0);">Step 2: Install Visual Studio Code (VS Code)</span></h2><p><span style="color:rgb(0, 0, 0);"> VS Code is the recommended code editor for Salesforce development. </span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h3><span style="color:rgb(0, 0, 0);">How to Install:</span></h3><ol><li><span style="color:rgb(0, 0, 0);">Visit the VS Code official website.</span></li><li><span style="color:rgb(0, 0, 0);">Download the version for your OS (Windows/Mac/Linux).</span></li><li><span style="color:rgb(0, 0, 0);">Install normally and open VS Code.</span></li></ol><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
<h3><span style="color:rgb(0, 0, 0);">Important Extensions for LWC:</span></h3><ul><li><span style="color:rgb(0, 0, 0);">Salesforce Extension Pack</span></li><li><span style="color:rgb(0, 0, 0);">Lightning Web Components</span></li><li><span style="color:rgb(0, 0, 0);">Prettier – Code Formatter</span></li><li><span style="color:rgb(0, 0, 0);">ESLint</span></li></ul><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
<h2><span style="color:rgb(0, 0, 0);">Step 3: Install Node.js (Required for Salesforce CLI)</span></h2><p><span style="color:rgb(0, 0, 0);">Node.js helps Salesforce CLI run properly.</span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h3><span style="color:rgb(0, 0, 0);">Check if Node is already installed:</span></h3><pre><code style="color:rgb(0, 0, 0);"> node -v </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h3><span style="color:rgb(0, 0, 0);">Download:</span></h3><p><span style="color:rgb(0, 0, 0);">Go to nodejs.org → Download LTS version → Install.</span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h2><span style="color:rgb(0, 0, 0);">Step 4: Install Salesforce CLI (SFDX CLI)</span></h2><p><span style="color:rgb(0, 0, 0);"> Salesforce CLI is required to create projects, authorize orgs, deploy LWCs, and run commands. </span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h3><span style="color:rgb(0, 0, 0);">Download:</span></h3><p><span style="color:rgb(0, 0, 0);">Visit developer.salesforce.com → Download Salesforce CLI → Install.</span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h3><span style="color:rgb(0, 0, 0);">Check successful installation:</span></h3><pre><code style="color:rgb(0, 0, 0);"> sfdx --version </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h2><span style="color:rgb(0, 0, 0);">Step 5: Install Git (Optional but recommended)</span></h2><p><span style="color:rgb(0, 0, 0);"> Git helps with version control and teamwork. </span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h3><span style="color:rgb(0, 0, 0);">To check if Git is installed:</span></h3><pre><code style="color:rgb(0, 0, 0);"> git --version </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h3><span style="color:rgb(0, 0, 0);">If not installed:</span></h3><p><span style="color:rgb(0, 0, 0);">Visit git-scm.com → Download → Install.</span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h2><span style="color:rgb(0, 0, 0);">Step 6: Create a Salesforce Developer Org</span></h2><p><span style="color:rgb(0, 0, 0);">You need a Salesforce Developer Org to test and deploy your LWC components.</span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h3><span style="color:rgb(0, 0, 0);">Steps:</span></h3><ol><li><span style="color:rgb(0, 0, 0);">Go to developer.salesforce.com/signup</span></li><li><span style="color:rgb(0, 0, 0);">Enter your details</span></li><li><span style="color:rgb(0, 0, 0);">Verify your email</span></li><li><span style="color:rgb(0, 0, 0);">Login → Setup → Enable Dev Hub</span></li></ol><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
<h2><span style="color:rgb(0, 0, 0);">Step 7: Connect VS Code to Salesforce Org</span></h2><p><span style="color:rgb(0, 0, 0);">Now you will connect VS Code with your Salesforce org using Salesforce CLI.</span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h3><span style="color:rgb(0, 0, 0);">Step 1 — Create an SFDX Project:</span></h3><pre><code style="color:rgb(0, 0, 0);"> sfdx force:project:create -n lwcPractice </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h3><span style="color:rgb(0, 0, 0);">Step 2 — Open the Project in VS Code</span></h3><p><span style="color:rgb(0, 0, 0);"> File → Open Folder → select the created project. </span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h3><span style="color:rgb(0, 0, 0);">Step 3 — Authorize an Org:</span></h3><pre><code style="color:rgb(0, 0, 0);"> sfdx force:auth:web:login -a DevOrg </code></pre><p><span style="color:rgb(0, 0, 0);">A browser will open → Login to your Salesforce Developer Org → Success.</span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h2><span style="color:rgb(0, 0, 0);">Step 8: Create Your First LWC Component</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
<h3><span style="color:rgb(0, 0, 0);">Use the following command:</span></h3><pre><code style="color:rgb(0, 0, 0);"> sfdx force:lightning:component:create </code></pre><pre><code style="color:rgb(0, 0, 0);">\ -n helloWorld \ -d force-app/main/default/lwc </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h3><span style="color:rgb(0, 0, 0);">Component Structure:</span></h3><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
<table><tbody><tr><th><span style="color:rgb(0, 0, 0);">File</span></th><th><span style="color:rgb(0, 0, 0);">Description</span></th></tr><tr><td><span style="color:rgb(0, 0, 0);">helloWorld.html</span></td><td><span style="color:rgb(0, 0, 0);">UI structure</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">helloWorld.js</span></td><td><span style="color:rgb(0, 0, 0);">Logic/behavior</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">helloWorld.js-meta.xml</span></td><td><span style="color:rgb(0, 0, 0);">Component visibility &amp; configuration</span></td></tr></tbody></table><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h2><span style="color:rgb(0, 0, 0);">Step 9: Deploy LWC to Salesforce Org</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
<h3><span style="color:rgb(0, 0, 0);">Deploy the entire project:</span></h3><pre><code style="color:rgb(0, 0, 0);"> sfdx force:source:deploy -p force-app </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h3><span style="color:rgb(0, 0, 0);">Deploy specific LWC:</span></h3><pre><code style="color:rgb(0, 0, 0);"> sfdx force:source:deploy -p force-app/main/default/lwc/helloWorld </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h2><span style="color:rgb(0, 0, 0);">Step 10: Add LWC to Lightning App Builder</span></h2><h3><span style="color:rgb(0, 0, 0);">Steps:</span></h3><ol><li><span style="color:rgb(0, 0, 0);">Go to Salesforce org</span></li><li><span style="color:rgb(0, 0, 0);">Setup → Lightning App Builder</span></li><li><span style="color:rgb(0, 0, 0);">Create a new page or open existing one</span></li><li><span style="color:rgb(0, 0, 0);">Search for your component (helloWorld)</span></li><li><span style="color:rgb(0, 0, 0);">Drag and drop on the page</span></li><li><span style="color:rgb(0, 0, 0);">Save &amp; Activate</span></li></ol><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
<h2><span style="color:rgb(0, 0, 0);">Troubleshooting Common Errors</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><h3><span style="color:rgb(0, 0, 0);">1. Salesforce CLI not recognized</span></h3><pre><code style="color:rgb(0, 0, 0);"> Add SFDX CLI to system PATH or reinstall CLI </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h3><span style="color:rgb(0, 0, 0);">2. Org not connecting</span></h3><ul><li><span style="color:rgb(0, 0, 0);">Check internet connection</span></li><li><span style="color:rgb(0, 0, 0);">Try `sfdx force:auth:web:login -r https://login.salesforce.com`</span></li></ul><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
<h3><span style="color:rgb(0, 0, 0);">3. Project not deploying</span></h3><ul><li><span style="color:rgb(0, 0, 0);">Check component metadata file</span></li><li><span style="color:rgb(0, 0, 0);">Check API version</span></li><li><span style="color:rgb(0, 0, 0);">Make sure Dev Hub is enabled</span></li></ul><div><br/></div></div>
</div><div class="zpelement zpelem-carousel " data-element-id="elm_byTBvaroUVlqNQzB3l0WEQ" data-element-type="carousel" data-currentslide-index="0" data-transition="slide_left" data-zs-autoslide="false" data-zs-slider="min-height-el: zpcarousel-content-container;arrow-cont: zpcarousel-arrows-container; active-controller: zpcarousel-controller-active; controller-cont: zpcarousel-controller-container; controller: zpcarousel-controller; right-arrow: zpcarousel-arrow-right; left-arrow: zpcarousel-arrow-left;active-slide:zpcarousel-content-active; slide: zpcarousel-content; slides-cont: zpcarousel-content-container;content-cont : zpcarousel-content-inner; background: false;slide-pause-btn:zpcarousel-pause-btn;slide-play-btn:zpcarousel-play-btn;"><div class="zpcarousel-container zpcarousel-style-01"><style></style><div class="zpcarousel-content-container"><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_-dxt0NaImCeUb0jHYGM2Ow" data-slide-name="Slide 1"><div class="zpcarousel-content-inner"><div data-element-id="elm_4Jy8AFUbkHw4IXVthKXcwg" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_eO9573nNV2JPmlpkVUhEdg" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_SiJIPTsI0iZNgc4tajDCvw" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Dharmesh R.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>The explanations are clear, and the repetition really helps to reinforce the concepts. It covers everything in detail, from the basics to more advanced topics. The course includes in-depth examples that make complex ideas easy to understand. Overall, I’m really impressed and can’t wait to explore more!</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_NZnF622zgu6xIrpJo386_g" data-slide-name="Slide 2"><div class="zpcarousel-content-inner"><div data-element-id="elm_hHh-tqVupL3HL8KYT1kf9Q" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm__dSB6W4LHkpHg36wJiyBsw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_GHUL9IsOVpazUCwTJjdzMw" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Jermaine L.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>Taking this course like help me acquire all the knowledge and skills I need to excel and optimize my performance to fulfilling my operational duties in my current role as an email marketing specialist</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_v3u8hhd_AsZxORmwnoA_2g" data-slide-name="Slide 3"><div class="zpcarousel-content-inner"><div data-element-id="elm_DD4MpNQtMS1HKlrokaUzeA" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_k40UvPeZYpsuUJLZc3IAZw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_t0XTYi6tHJ5BJkc4CqF21g" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Sumit N.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>Awesome explanation. He keep repeating which helps to remind/refresh the concepts. Loved it</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_hy7Rbr8nliB0X9rRDa5aow" data-slide-name="Slide 4"><div class="zpcarousel-content-inner"><div data-element-id="elm_QL8Q-Kw-ITIb4l-A8xb-mA" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_OAbkKPefCMhNQsVayTvj2w" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_NgbzA5biiFsJ40IvZ4dfyg" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Varun V.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>It's a great course that covers everything you need to know. After almost finishing, I feel confident using the SDC platform. Definitely a 5-star experience!</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_aJlL0IwMmDJL1pq3VxCvig" data-slide-name="Slide 5"><div class="zpcarousel-content-inner"><div data-element-id="elm_WVzZlT8_Ygn-L_HvDcrbhA" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_nz3RpOWIfz2pKHIP8PmbXw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_cdESQ-gJxvN41XpT7ZaAkg" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Prajakta Nimba S.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>This course is perfect for anyone looking to build a solid foundation in Salesforce Data Cloud. The content is well-structured, easy to follow, and packed with real-world examples that make the concepts practical</span></span></p></div>
</div></div></div></div></div></div></div><div class="zpcarousel-arrows-container zpcarousel-arrow-type-01" data-arrow-style="2"><div class="zpcarousel-arrow-left" tabindex="0" role="button" aria-label="Previous"><svg aria-hidden="true" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" class="svg-icon-18px"><path d="M0,16c0,0.3,0.1,0.5,0.3,0.7l9.9,10c0.4,0.4,1,0.4,1.4,0c0.4-0.4,0.4-1,0-1.4L3.4,17H31 c0.6,0,1-0.5,1-1s-0.4-1-1-1H3.4l8.2-8.3c0.4-0.4,0.4-1,0-1.4c-0.4-0.4-1-0.4-1.4,0l-9.9,10C0.1,15.5,0,15.7,0,16z"></path></svg></div>
<div class="zpcarousel-arrow-right" tabindex="0" role="button" aria-label="Next"><svg aria-hidden="true" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" class="svg-icon-18px"><path id="arrow-right-style2-Arrow_Forward" d="M32,16c0-0.3-0.1-0.5-0.3-0.7l-9.9-10c-0.4-0.4-1-0.4-1.4,0c-0.4,0.4-0.4,1,0,1.4 l8.2,8.3H1c-0.6,0-1,0.5-1,1s0.4,1,1,1h27.6l-8.2,8.3c-0.4,0.4-0.4,1,0,1.4c0.4,0.4,1,0.4,1.4,0l9.9-10C31.9,16.5,32,16.3,32,16z"></path></svg></div>
</div><div class="zpcarousel-controller-container zpcarousel-controller-type-01"><div class="zpcarousel-controller zpcarousel-controller-active" data-slide-index="0"></div>
<div class="zpcarousel-controller " data-slide-index="1"></div><div class="zpcarousel-controller " data-slide-index="2"></div>
<div class="zpcarousel-controller " data-slide-index="3"></div><div class="zpcarousel-controller " data-slide-index="4"></div>
</div></div></div><div data-element-id="elm_Vu-0h7FBeerqTMPmZaWlug" data-element-type="heading" class="zpelement zpelem-heading "><style></style><h2
 class="zpheading zpheading-style-none zpheading-align-left zpheading-align-mobile-left zpheading-align-tablet-left " data-editor="true"><span><span style="color:rgb(0, 0, 0);">Frequently Asked Questions (FAQ)</span><br/></span></h2></div>
<div data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA" data-element-type="accordion" class="zpelement zpelem-accordion " data-tabs-inactive="false" data-icon-style="1"><style> [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion, [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content{ border-style:solid; border-color: !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content.zpaccordion-active-content:last-of-type{ border-block-end-width:1px !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion.zpaccordion-active + .zpaccordion-content{ border-block-start-color: transparent !important; } @media all and (min-width: 768px) and (max-width:991px){ [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion, [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content{ border-style:solid; border-color: !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content:last-of-type{ border-block-end-width:1px !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion.zpaccordion-active + .zpaccordion-content{ border-block-start-color: transparent !important; } } @media all and (max-width:767px){ [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion, [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content{ border-style:solid; border-color: !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content:last-of-type{ border-block-end-width:1px !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion.zpaccordion-active + .zpaccordion-content{ border-block-start-color: transparent !important; } } </style><div class="zpaccordion-container zpaccordion-style-01 zpaccordion-with-icon zpaccord-svg-icon-1 zpaccordion-icon-align-left "><div data-element-id="elm_avqPnRbxn96EwANShYaFjg" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="1. Which software is mandatory for LWC development?" data-content-id="elm_X8MB5lkAUEcGoYBtGrpljg" style="margin-top:0;" tabindex="0" role="button" aria-label="1. Which software is mandatory for LWC development?"><span class="zpaccordion-name">1. Which software is mandatory for LWC development?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_X8MB5lkAUEcGoYBtGrpljg" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_u5Cj1v0VUadpxrxv948nyw" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_7ezNrxV4FkYz7RGU1G0BtQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_hae4_dzBKBBmMQbSfRCyug" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p><strong style="color:rgb(0, 0, 0);"></strong></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p><span style="color:rgb(0, 0, 0);"><span></span></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"><span></span></span></p><div><p></p><div><p></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);">VS Code, Salesforce CLI, Node.js, and a Salesforce Developer Org.</span></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div>
</div></div></div></div></div><div data-element-id="elm_2U5i1G2PT4th-0HwQ_qYMg" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="2. Do I need JavaScript knowledge to start LWC?" data-content-id="elm_HWiLrHq626LLO7HEwZZO0A" style="margin-top:0;" tabindex="0" role="button" aria-label="2. Do I need JavaScript knowledge to start LWC?"><span class="zpaccordion-name">2. Do I need JavaScript knowledge to start LWC?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_HWiLrHq626LLO7HEwZZO0A" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_EsUHLPDiEOSRoxW1Va1vSQ" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_e_hMh4qQPANv9Gq71QOCbQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_yDDgYpCDh88L_B4yVqVDpw" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p style="color:rgb(0, 0, 0);"><span></span></p><div><p style="color:rgb(0, 0, 0);"></p><div><p style="color:rgb(0, 0, 0);"></p><div><p style="color:rgb(0, 0, 0);"></p><div><p style="color:rgb(0, 0, 0);"></p><div><p style="color:rgb(0, 0, 0);"></p><div><p style="color:rgb(0, 0, 0);"></p><div><p style="color:rgb(0, 0, 0);"></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);">Yes, basic JavaScript is required.</span></p></div><p></p></div><p style="color:rgb(0, 0, 0);"></p></div><p style="color:rgb(0, 0, 0);"></p></div><p style="color:rgb(0, 0, 0);"></p></div><p style="color:rgb(0, 0, 0);"></p></div><p style="color:rgb(0, 0, 0);"></p></div><p style="color:rgb(0, 0, 0);"></p></div><p style="color:rgb(0, 0, 0);"></p></div><p></p></div></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div></div></div></div></div></div></div>
</div></div></div></div></div><div data-element-id="elm_z819rp9QtsimO7OBe5fUQQ" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="3. Can I build LWC without Salesforce CLI?" data-content-id="elm_G0J2WJbaranPy8N5RGud_Q" style="margin-top:0;" tabindex="0" role="button" aria-label="3. Can I build LWC without Salesforce CLI?"><span class="zpaccordion-name">3. Can I build LWC without Salesforce CLI?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_G0J2WJbaranPy8N5RGud_Q" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_NLdjpQsYYYsfKNQ4rWhxJg" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_mCo9PctebWjYnQx_burGTQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_PUMBoTZ3jG3CqnmnOda7FA" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);">No, CLI is mandatory for creating and deploying components.</span></p></div><p></p></div><p></p></div><p></p></div><p></p></div><code></code><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div>
</div></div></div></div></div><div data-element-id="elm_MrzO9Mu2yvjD1yOveoN1ag" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="4. Is Git required?" data-content-id="elm_VCfqx-I0okQtrLLtQgg6uQ" style="margin-top:0;" tabindex="0" role="button" aria-label="4. Is Git required?"><span class="zpaccordion-name">4. Is Git required?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_VCfqx-I0okQtrLLtQgg6uQ" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_83IdZWSoCFzucCnLahu5cw" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_lHAb9U1G1dgp1V6c444ATQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_Q-zMCoK5NRejxdtEjZeb0g" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p style="color:rgb(0, 0, 0);"></p><div><p style="color:rgb(0, 0, 0);"></p><div><p style="color:rgb(0, 0, 0);"></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);">No, but highly recommended for team projects.</span></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p style="color:rgb(0, 0, 0);"></p></div><p style="color:rgb(0, 0, 0);"></p></div><p style="color:rgb(0, 0, 0);"></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div>
</div></div></div></div></div><div data-element-id="elm_tbTU4vUzVyHxec4fh5treA" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="5. Can I use another editor instead of VS Code?" data-content-id="elm_ytAT6ZF-UgNskNSKR7FuZQ" style="margin-top:0;" tabindex="0" role="button" aria-label="5. Can I use another editor instead of VS Code?"><span class="zpaccordion-name">5. Can I use another editor instead of VS Code?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_ytAT6ZF-UgNskNSKR7FuZQ" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_I_fDz0ybSUu9nfzEuPrMMg" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_LJZ6EEKHjUSNa8ZMVwDadw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_zjpsXejtTlBuGOWTiUljMA" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><div><p><span style="color:rgb(0, 0, 0);">Not recommended—VS Code has official Salesforce extensions.</span></p></div></div>
</div></div></div></div></div></div></div><div data-element-id="elm_8m4TfeROM6fQN9AHueEupg" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p><span style="font-family:Poppins, sans-serif;font-size:40px;font-weight:600;color:rgb(0, 0, 0);">Conclusion</span></p><div><div><span style="color:rgb(0, 0, 0);"><strong></strong></span></div><div><p></p></div>
</div><div><p></p><div><section><p></p></section></div></div><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p><div><p></p><div><p></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p><div><p></p><div><p></p><div><p></p><div><p></p></div></div></div></div></div></div></div></div></div><div><p></p><div><p></p><div><div><p></p><div></div></div><div><div><div><div><div><div><div><div><div><div><span style="color:rgb(0, 0, 0);">Lightning Web Components (LWC) is a powerful, modern framework that brings the best of JavaScript and web standards into Salesforce. With its lightweight architecture and high performance, LWC has quickly become the backbone of Salesforce UI development. Whether you are a beginner or an experienced developer, learning LWC will significantly boost your Salesforce career and open multiple job opportunities worldwide.</span></div></div></div></div></div></div></div></div></div></div></div></div></div><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
</div></div></div><p></p><div><div><h2></h2></div><div><div><h2><span style="color:rgb(0, 0, 0);">More SFDC Resources</span></h2></div><span style="color:rgb(0, 0, 0);"><br/></span><div><span style="font-style:italic;color:rgb(0, 0, 0);"><p>Start your SFMC journey today — join our&nbsp;<strong><a href="https://www.peoplewoo.com/" target="_blank" rel="">Live Training</a></strong>&nbsp;</p><p>Need help? Chat with us on&nbsp;<strong><a href="https://wa.me/%2B917875494672" rel="">WhatsApp</a></strong>&nbsp;anytime.</p><p>Learn. Practice. Get Certified. Succeed with&nbsp;<strong><a href="https://www.youtube.com/%40peoplewoo" target="_blank" rel="">Peoplewoo Skills</a></strong><a href="https://www.youtube.com/redirect?event=video_description&amp;redir_token=QUFFLUhqbUhyQUhpemJaOGZXR1RFRmxub3lNZlR4QW43QXxBQ3Jtc0ttMFhRMWtISFBVdlhJYlNab3NZS0hRd0RrQ0hwaTNGVEVhX2hVWUo3TktGN3VGa2FIWWtsQ1QtM0wxWG1ud0ZEeG02OG1CU3ZvVkE3ekNUUjZoaWFxZmhsUHNMR2diOEl5Wm5ROEpiUTVJSkJfQjF1MA&amp;q=https%3A%2F%2Fchat.whatsapp.com%2FKGLPRc9tofo0oiyd9oQW4E&amp;v=d_fgnADOmiQ" target="_blank" rel="">.</a></p></span></div></div><div><span style="font-style:italic;color:rgb(0, 0, 0);"><p><a href="https://www.youtube.com/%40peoplewoo" rel=""></a></p></span></div>
</div><p></p></div><p></p></div></div></div><div data-element-id="elm_KnMYXjQPWbIKC85JEm98qw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-4 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div class="zpelement zpelem-newsletter " data-list-id="" data-integ-type="" data-element-id="elm_eV_tPTfOVvRvGG8gHurC3Q" data-element-type="newsletter"><style type="text/css"></style><div class="zpnewsletter-container zpnewsletter-style-01 "><h2 class="zpheading zpheading-align-center zpnewsletter-heading" data-editor="true">Subscribe to our newsletter</h2><p class="zptext zptext-align-center zpnewsletter-desc" data-editor="true"> Stay informed about our latest updates through email. Subscribe here.</p><form class="zpform-container zpnewsletter-input-container"><label for="Email_elm_eV_tPTfOVvRvGG8gHurC3Q" class="zs-visually-hidden">Email</label><input type="text" id="Email_elm_eV_tPTfOVvRvGG8gHurC3Q" name="email" placeholder="Email" class="zpnewsletter-email-input-field"/><button type="submit" class="zpbutton zpnewsletter-button zpbutton-type-primary zpbutton-size-md">Subscribe</button></form></div>
</div><div data-element-id="elm_3-a_z2EN2Rdvo4WVGz-Y1Q" itemscope="" data-element-type="socialprofile" class="zpelement zpelem-socialprofile" data-element-id="elm_3-a_z2EN2Rdvo4WVGz-Y1Q"><style type="text/css"></style><div data-socialprofile_container class="zpsocialprofile-container zpsocialprofile-size-md zpsocialprofile-halign-center zpsocialprofile-align-mobile-center zpsocialprofile-align-tablet-center zpsocialprofile-style-none zpsocialprofile-type-color "><a href="https://www.linkedin.com/company/peoplewoo" class="zpsocialprofile-wrapper zpsocialprofile-linkedin" target="_blank" aria-label="LinkedIn"><svg aria-hidden="true" class="zpsocialprofile" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><path d="M64 4.706v54.588A4.706 4.706 0 0 1 59.294 64H4.706A4.706 4.706 0 0 1 0 59.294V4.706A4.706 4.706 0 0 1 4.706 0h54.588A4.706 4.706 0 0 1 64 4.706zM18.824 24.47H9.412v30.117h9.412V24.471zm.847-10.353a5.421 5.421 0 0 0-5.384-5.46h-.17a5.459 5.459 0 0 0 0 10.918 5.421 5.421 0 0 0 5.554-5.289v-.17zm34.917 22.174c0-9.054-5.76-12.574-11.482-12.574a10.73 10.73 0 0 0-9.525 4.856h-.263v-4.103H24.47v30.117h9.411V38.57a6.25 6.25 0 0 1 5.647-6.738h.358c2.993 0 5.214 1.882 5.214 6.625v16.132h9.412l.075-18.296z"/></svg></a><a href="https://www.youtube.com/@peoplewoo" class="zpsocialprofile-wrapper zpsocialprofile-youtube" target="_blank" aria-label="YouTube"><svg aria-hidden="true" class="zpsocialprofile" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><path d="M32.786 10l.106.001.392.002c1.94.009 6.896.05 11.873.237l.765.03c4.589.187 9.063.504 11.068 1.04 2.71.73 4.84 2.86 5.56 5.56 1.204 4.505 1.301 13.515 1.31 14.939v.382c-.009 1.424-.106 10.434-1.31 14.939a7.885 7.885 0 0 1-5.56 5.56c-4.455 1.19-21.107 1.3-24.098 1.309h-.923c-2.99-.01-19.635-.118-24.099-1.309a7.885 7.885 0 0 1-5.56-5.56c-.401-1.502-.68-3.504-.873-5.559l-.058-.65c-.314-3.688-.368-7.394-.377-8.552L1 32.124v-.194-.054l.002-.245c.009-1.158.063-4.864.377-8.552l.058-.65c.193-2.055.472-4.057.873-5.559a7.885 7.885 0 0 1 5.56-5.56c4.296-1.146 19.878-1.29 23.706-1.307L31.97 10h.105zM26.15 22.57v18.86L42.48 32l-16.33-9.43z"/></svg></a><a href="https://www.instagram.com/peoplewoo_consulting/" class="zpsocialprofile-wrapper zpsocialprofile-instagram" target="_blank" aria-label="Instagram"><svg aria-hidden="true" class="zpsocialprofile" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient x1="72.5875139%" y1="0%" x2="28.281045%" y2="106.524963%" id="linearGradient-1"><stop stop-color="#9A1DF1" offset="0%"></stop><stop stop-color="#ED1E64" offset="49.3618943%"></stop><stop stop-color="#FFD002" offset="100%"></stop></linearGradient><path d="M18.7470755,0.221595251 C15.3422244,0.382299247 13.0166948,0.927668835 10.9845413,1.72394402 C8.8808805,2.5440464 7.09761014,3.64310557 5.32364538,5.42434073 C3.54758782,7.20661909 2.45687425,8.99304465 1.64301187,11.0988238 C0.855031083,13.1361614 0.321066295,15.4627981 0.170711099,18.8697484 C0.0214311023,22.2829708 -0.012802497,23.3716107 0.00383750267,32.0611721 C0.0204135023,40.7496967 0.0587623014,41.8403975 0.221527098,45.254631 C0.384285494,48.6585158 0.927619882,50.9830597 1.72388866,53.0162565 C2.54502785,55.1199428 3.64296062,56.9022276 5.42521338,58.6772547 C7.20645494,60.4522883 8.9939045,61.5419779 11.1006629,62.3569282 C13.1359204,63.1438722 15.46353,63.6799042 18.8694627,63.8291842 C22.2826082,63.9795458 23.3722466,64.0127042 32.0596384,63.9961282 C40.7511454,63.9795458 41.8408478,63.941165 45.2539933,63.7794178 C48.6588444,63.616653 50.9822875,63.0712898 53.0165275,62.2770946 C55.1201883,61.4538563 56.9034586,60.3579395 58.6774234,58.5756547 C60.4513945,56.7943876 61.5421081,55.0069188 62.3560345,52.9001285 C63.1440153,50.8648453 63.6800089,48.5372038 63.8282777,45.1333446 C63.9775577,41.7180679 64.0128665,40.6273351 63.9962265,31.9388169 C63.9796441,23.2492555 63.9402841,22.1606092 63.7785369,18.7484684 C63.6167897,15.3414861 63.0714329,13.0179854 62.2761753,10.9837454 C61.4540249,8.88005905 60.3571033,7.0987919 58.5758618,5.32274074 C56.7946202,3.54875038 55.0071771,2.4559312 52.9004123,1.64411682 C50.8641371,0.856129637 48.5375324,0.319048049 45.1316061,0.171822452 C41.7184606,0.0204496555 40.6288222,-0.0127087437 31.9383264,0.00387365592 C23.2499298,0.0204560555 22.160285,0.0577936547 18.7470755,0.221595251 M19.1203747,58.0696835 C16.0006051,57.9338499 14.3064996,57.4154436 13.1774308,56.9810372 C11.682346,56.4024772 10.6154853,55.7088452 9.49261809,54.5942852 C8.37184371,53.4755524 7.67612533,52.4117765 7.09241974,50.9198021 C6.65381495,49.7906885 6.12611576,48.0986182 5.97993337,44.9788358 C5.82129017,41.6060871 5.78502777,40.5941383 5.76945657,32.0497481 C5.75287417,23.5074443 5.78394617,22.4954955 5.93120377,19.1196428 C6.06491897,16.0019213 6.58648055,14.3057037 7.01983094,13.1776334 C7.59834613,11.6804686 8.28988531,10.6156558 9.40655089,9.49280784 C10.5252389,8.36992787 11.5889956,7.67628948 13.081994,7.0925775 C14.2100452,6.65191191 15.9021283,6.12831512 19.0208227,5.98007832 C22.3956194,5.82038552 23.4064738,5.78618392 31.9486944,5.76960153 C40.4929438,5.75298713 41.5048734,5.78307992 44.8807453,5.93134872 C47.9983644,6.06715032 49.6945564,6.58350231 50.8216028,7.0199951 C52.3176987,7.59852308 53.3845595,8.28801427 54.5064091,9.40674704 C55.628201,10.5254798 56.323913,11.5871694 56.9076186,13.0832846 C57.3482458,14.2082189 57.8718362,15.9023821 58.0190938,19.0201036 C58.1797594,22.3949387 58.2160858,23.4068555 58.231593,31.9491913 C58.2481754,40.4935879 58.2171034,41.5054983 58.0688346,44.8792902 C57.933033,47.9990726 57.4156442,49.6942725 56.9802074,50.8243973 C56.4016858,52.3184581 55.710089,53.3853316 54.5924123,54.5082116 C53.4747995,55.6269444 52.4110427,56.3246916 50.9169691,56.9084356 C49.7910044,57.348026 48.0968988,57.8726723 44.9802333,58.0209411 C41.6055006,58.1795587 40.5945822,58.2158467 32.0492576,58.2314179 C23.507037,58.2480131 22.4961826,58.2158659 19.1203747,58.0696835 M45.2073489,14.8946189 C45.2114717,17.0138765 46.9346204,18.729806 49.053846,18.7256663 C51.1740891,18.7215116 52.8900251,16.9993549 52.8869253,14.8800973 C52.8827483,12.7608398 51.1595931,11.043899 49.03935,11.0480387 C46.9191132,11.052187 45.2031773,12.7753614 45.2073489,14.8946189 M15.5693094,32.0310857 C15.5869347,41.1063495 22.957565,48.4469894 32.0305952,48.4293954 C41.1046942,48.4117446 48.4493852,41.0430983 48.4318231,31.9678665 C48.414134,22.8957323 41.0424926,15.5509133 31.967376,15.5685072 C22.8942818,15.5861645 15.5516836,22.9579403 15.5693094,32.0310857 M21.3328633,32.0196937 C21.3225058,26.1295435 26.0897377,21.344654 31.978768,21.3342528 C37.868867,21.3228812 42.6547101,26.0880651 42.6661227,31.9792585 C42.6775581,37.870452 37.9103198,42.6542983 32.0192032,42.6657427 C26.1301793,42.6771143 21.3442722,37.9108872 21.3328633,32.0196937" id="path-2"></path></defs><g stroke="none" stroke-width="1" fill-rule="evenodd"><mask fill="white"><use xlink:href="#path-2"></use></mask><use class="cl-path-inherit" fill="url(#linearGradient-1)" xlink:href="#path-2"></use></g></svg></a><a href="https://wa.me/+917875494672" class="zpsocialprofile-wrapper zpsocialprofile-whatsapp" target="_blank" aria-label="WhatsApp"><svg aria-hidden="true" class="zpsocialprofile" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><defs><linearGradient x1="49.9999983%" y1="100%" x2="49.9999983%" y2="0.00237659529%" id="wtlinearGradient-1"><stop stop-color="#F9F9F9" offset="0%"></stop><stop stop-color="#FFFFFF" offset="100%"></stop></linearGradient></defs><g stroke="none" stroke-width="1" fill-rule="evenodd"><g fill-rule="nonzero"><path class="cl-path-transparent" d="M1.10771574,62.8926967 L5.4728797,47.0284478 C2.78074848,42.3847708 1.36440022,37.1174751 1.3659281,31.7224137 C1.37356752,14.8421228 15.1734138,1.1088243 32.1283401,1.1088243 C40.3575222,1.11186634 48.0825026,4.30144735 53.8884609,10.0874112 C59.6974751,15.873375 62.8938079,23.5651781 62.8907543,31.745229 C62.8831127,48.6255199 49.0832664,62.3603394 32.1283401,62.3603394 C32.1283401,62.3603394 32.1283401,62.3603394 32.1283401,62.3603394 L32.1145892,62.3603394 C26.9656208,62.3588184 21.9067976,61.0720346 17.4148193,58.633838 L1.10618786,62.8911757 L1.10771574,62.8926967 Z" fill="#25D266"></path><path class="cl-path-inherit" d="M32.1344517,0 C40.6585153,0.00304204197 48.6585147,3.30669962 54.6753211,9.30104333 C60.6905995,15.295387 64.0030515,23.264016 64,31.7376239 C63.9924328,49.0469187 49.9804471,63.1660029 32.660306,63.4466537 L32.1344517,63.4509114 L32.1344517,63.4509114 L32.1207007,63.4509114 C26.7883863,63.4493904 21.5477449,62.116976 16.893811,59.5905602 L0.00152788378,64 L0,64 L4.52100811,47.5668893 C1.73262021,42.7574209 0.265851778,37.3015186 0.267379662,31.7117665 C0.27501908,14.2261093 14.5683718,0 32.1344517,0 Z M32.143619,5.35703591 C17.5339943,5.35703591 5.65316999,17.179932 5.6470572,31.7132875 C5.64553057,36.6931103 7.04507211,41.5436462 9.69595047,45.7401431 L10.3269665,46.7379328 L7.65011409,56.464862 L17.6745596,53.8487059 L17.6760875,53.8487059 L18.6432379,54.4190888 C22.7089366,56.8207809 27.37051,58.0908335 32.1237565,58.0938755 L32.1344517,58.0938755 C46.7318533,58.0938755 58.6142055,46.2694584 58.6203176,31.7345818 C58.6218449,24.6907337 55.8701262,18.0682083 50.8693626,13.0868646 C45.868599,8.10552083 39.2192487,5.36007795 32.143619,5.35703591 Z M20.8510299,17.0688705 C21.3827335,17.0688705 21.9129092,17.0673765 22.3773858,17.0871497 C22.9457586,17.1099651 23.5737188,17.1358224 24.1695935,18.4560686 L24.1695935,18.4560686 C24.8785316,20.0242413 26.4262779,23.9439124 26.6249028,24.3408988 C26.8235276,24.7378853 26.9564535,25.2002757 26.6906018,25.729591 C26.42475,26.2589063 26.2918241,26.5889678 25.8945743,27.0513582 C25.4957966,27.5152696 25.057294,28.0856525 24.6997692,28.4400504 C24.2994636,28.8339948 23.8854071,29.2644438 24.3498838,30.0568957 C24.8143605,30.8508686 26.4125269,33.4457304 28.7792189,35.5462604 C31.8212355,38.2460727 34.3865524,39.0826342 35.1825798,39.4796207 C35.9786073,39.8766072 36.4430839,39.8096822 36.9075606,39.2803669 C37.3720373,38.7525727 38.8983932,36.966894 39.4285688,36.1744421 C39.9602724,35.3804691 40.4904481,35.512798 41.2207765,35.7774556 C41.9511049,36.0405922 45.8655432,37.9585997 46.6615706,38.3555862 C47.4575981,38.7525727 47.9893016,38.9503054 48.1879265,39.2803669 C48.3865514,39.6119495 48.3865514,41.1983744 47.7234499,43.0494569 C47.0588204,44.9005395 43.8090116,46.6846971 42.3483547,46.8170259 C42.2952399,46.8218379 42.2422464,46.8271688 42.189112,46.8328475 L42.0290247,46.850756 C40.6602396,47.0089406 39.0295689,47.2820712 32.7929696,44.8336146 C24.6997692,41.6562017 19.5905258,33.3970578 19.1917482,32.8692635 C18.7944984,32.3399482 15.9404115,28.5708582 15.9404115,24.6709604 C15.9404115,20.7710626 17.996943,18.8530551 18.7272715,18.0606032 C19.4575999,17.2681512 20.3193264,17.0688705 20.8510299,17.0688705 Z" fill="url(#wtlinearGradient-1)"></path></g></g></svg></a></div>
</div></div></div></div></div></div> ]]></content:encoded><pubDate>Mon, 01 Dec 2025 06:56:35 +0530</pubDate></item><item><title><![CDATA[Basics of CSS | Beginner’s Guide to Styling Websites | Peoplewoo Skills]]></title><link>https://www.peoplewoo.com/blogs/post/basics-of-css-beginner-s-guide-to-styling-websites-peoplewoo-skills</link><description><![CDATA[ CSS (Cascading Style Sheets) is the language used to style and design web pages. While HTML provides structure, CSS adds beauty, color, layout, and r ]]></description><content:encoded><![CDATA[<div class="zpcontent-container blogpost-container "><div data-element-id="elm_VSFK6u_qTROrUlbkwFcnHQ" data-element-type="section" class="zpsection "><style type="text/css"></style><div class="zpcontainer-fluid zpcontainer"><div data-element-id="elm_AX1H_FWwTISZjTAoLhORpg" data-element-type="row" class="zprow zprow-container zpalign-items- zpjustify-content- " data-equal-column=""><style type="text/css"></style><div data-element-id="elm_QmO3R2StSMOPjvWG4mBR2w" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-8 zpcol-sm-12 zpalign-self- "><style type="text/css"></style><div data-element-id="elm_zt8AQ9V5TPuN5ANXWKA81A" data-element-type="image" class="zpelement zpelem-image "><style> @media (min-width: 992px) { [data-element-id="elm_zt8AQ9V5TPuN5ANXWKA81A"] .zpimage-container figure img { width: 730px ; height: 677.66px ; } } </style><div data-caption-color="" data-size-tablet="" data-size-mobile="" data-align="center" data-tablet-image-separate="false" data-mobile-image-separate="false" class="zpimage-container zpimage-align-center zpimage-tablet-align-center zpimage-mobile-align-center zpimage-size-fit zpimage-tablet-fallback-fit zpimage-mobile-fallback-fit hb-lightbox " data-lightbox-options="
                type:fullscreen,
                theme:dark"><figure role="none" class="zpimage-data-ref"><span class="zpimage-anchor" role="link" tabindex="0" aria-label="Open Lightbox" style="cursor:pointer;"><picture><img class="zpimage zpimage-style-none zpimage-space-none " src="/Group%20300.png" size="fit" data-lightbox="true"/></picture></span></figure></div>
</div><div data-element-id="elm_pfjc3-aGJQ56E4Rt5J6YrA" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><section><p><span style="color:rgb(0, 0, 0);"></span></p></section><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p></div>
<div><p></p><div><header><p></p><div><section><p><span style="color:rgb(0, 0, 0);"></span></p></section><div><p></p><div><section><p><span style="color:rgb(0, 0, 0);"></span></p></section><div><section><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p><span style="color:rgb(0, 0, 0);">CSS (Cascading Style Sheets) is the language used to style and design web pages. While HTML provides structure, CSS adds beauty, color, layout, and responsiveness. For Lightning Web Components (LWC), CSS is essential to create modern, clean, and visually appealing Salesforce UIs.</span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h2><span style="color:rgb(0, 0, 0);">What is CSS?</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);">CSS stands for&nbsp;<strong>Cascading Style Sheets</strong>. Its main purpose is to define how elements appear on a webpage by controlling:</span></p><ul><li><span style="color:rgb(0, 0, 0);">Color</span></li><li><span style="color:rgb(0, 0, 0);">Spacing</span></li><li><span style="color:rgb(0, 0, 0);">Borders</span></li><li><span style="color:rgb(0, 0, 0);">Fonts</span></li><li><span style="color:rgb(0, 0, 0);">Layout</span></li><li><span style="color:rgb(0, 0, 0);">Animations</span></li></ul><div><span style="color:rgb(0, 0, 0);"><br/></span></div><h3><span style="color:rgb(0, 0, 0);">Example:</span></h3><pre><span style="color:rgb(0, 0, 0);"> h1 {     color: blue;     text-align: center; } </span></pre></div><pre><code style="color:rgb(0, 0, 0);"></code></pre></div><p></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p></div></div></div></div></div></section></div></div></div></div></header></div><p></p><p></p><div><h2><span style="color:rgb(0, 0, 0);">Watch Our Video Tutorial</span></h2></div>
<p></p></div><section><div><h2><span style="color:rgb(0, 0, 0);"></span></h2></div>
<p></p></section></div><p></p></div></div><div data-element-id="elm_Rs8I6iEvo-vvNZCsvmvgdQ" data-element-type="video" class="zpelement zpelem-video "><style type="text/css"> @media (max-width: 767px) { [data-element-id="elm_Rs8I6iEvo-vvNZCsvmvgdQ"].zpelem-video iframe.zpvideo{ width:560px !important; height:315px !important; } } @media all and (min-width: 768px) and (max-width:991px){ [data-element-id="elm_Rs8I6iEvo-vvNZCsvmvgdQ"].zpelem-video iframe.zpvideo{ width:560px !important; height:315px !important; } } </style><div class="zpvideo-container zpiframe-align-left zpiframe-mobile-align-center zpiframe-tablet-align-center"><iframe class="zpvideo " width="2000" height="315" src="//www.youtube.com/embed/PkcA12pTwQ4?enablejsapi=1" frameborder="0" allowfullscreen id=youtube-video-1 data-api=youtube></iframe></div>
</div><div data-element-id="elm_QlHXRdluq-pxYjAQryfSiQ" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><h1></h1><p><span style="font-family:Poppins, sans-serif;font-size:40px;font-weight:600;color:rgb(0, 0, 0);">Why is CSS Important for LWC?</span></p><ul><li><span style="color:rgb(0, 0, 0);">Controls how LWC components look</span></li><li><span style="color:rgb(0, 0, 0);">Improves UI/UX</span></li><li><span style="color:rgb(0, 0, 0);">Helps follow Salesforce Lightning design standards</span></li><li><span style="color:rgb(0, 0, 0);">Ensures components match brand identity</span></li><li><span style="color:rgb(0, 0, 0);">Makes layouts responsive on multiple screens</span></li></ul><div><span style="color:rgb(0, 0, 0);"><br/></span></div><div></div><h2><span style="color:rgb(0, 0, 0);">How CSS Works</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);">CSS is written using rulesets:</span></p><pre><span style="color:rgb(0, 0, 0);"> selector {     property: value; } </span></pre><p><span style="color:rgb(0, 0, 0);"> &nbsp;Example: </span></p><pre><span style="color:rgb(0, 0, 0);"> p {     color: green;     font-size: 18px; } </span></pre><pre><span style="color:rgb(0, 0, 0);"><br/></span></pre><pre></pre><h2><span style="color:rgb(0, 0, 0);">CSS Selectors</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><h3><span style="color:rgb(0, 0, 0);">1. Element Selector</span></h3><pre><span style="color:rgb(0, 0, 0);"> p { color: blue; }</span></pre><pre><span style="color:rgb(0, 0, 0);"> </span></pre><h3><span style="color:rgb(0, 0, 0);">2. Class Selector</span></h3><pre><span style="color:rgb(0, 0, 0);"> .message { font-size: 20px; } </span></pre><pre><span style="color:rgb(0, 0, 0);"><br/></span></pre><h3><span style="color:rgb(0, 0, 0);">3. ID Selector</span></h3><pre><span style="color:rgb(0, 0, 0);"> #header { background: yellow; } </span></pre><pre><span style="color:rgb(0, 0, 0);"><br/></span></pre><h3><span style="color:rgb(0, 0, 0);">4. Attribute Selector</span></h3><pre><span style="color:rgb(0, 0, 0);"> input[type=&quot;text&quot;] {     border: 1px solid black; } </span></pre><pre><span style="color:rgb(0, 0, 0);"><br/></span></pre><h2><span style="color:rgb(0, 0, 0);">Common CSS Properties</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><h3><span style="color:rgb(0, 0, 0);">1. Colors</span></h3><pre><span style="color:rgb(0, 0, 0);"> h1 { color: #ff5722; } </span></pre><pre><span style="color:rgb(0, 0, 0);"><br/></span></pre><h3><span style="color:rgb(0, 0, 0);">2. Background</span></h3><pre><span style="color:rgb(0, 0, 0);"> div { background-color: lightgray; } </span></pre><pre><span style="color:rgb(0, 0, 0);"><br/></span></pre><h3><span style="color:rgb(0, 0, 0);">3. Fonts</span></h3><pre><span style="color:rgb(0, 0, 0);"> p {     font-size: 18px;     font-family: Arial; } </span></pre><pre><span style="color:rgb(0, 0, 0);"><br/></span></pre><h3><span style="color:rgb(0, 0, 0);">4. Margin &amp; Padding</span></h3><pre><span style="color:rgb(0, 0, 0);"> .box {     margin: 20px;     padding: 10px; } </span></pre><pre><span style="color:rgb(0, 0, 0);"><br/></span></pre><h3><span style="color:rgb(0, 0, 0);">5. Borders</span></h3><pre><span style="color:rgb(0, 0, 0);"> .card {     border: 1px solid black;     border-radius: 8px; } </span></pre><pre><span style="color:rgb(0, 0, 0);"><br/></span></pre><pre></pre><h2><span style="color:rgb(0, 0, 0);">CSS Box Model (Very Important!)</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);"> Every HTML element is treated like a box with: </span></p><ul><li><span style="color:rgb(0, 0, 0);">Content</span></li><li><span style="color:rgb(0, 0, 0);">Padding</span></li><li><span style="color:rgb(0, 0, 0);">Border</span></li><li><span style="color:rgb(0, 0, 0);">Margin</span></li></ul><p><span style="color:rgb(0, 0, 0);"> Example: </span></p><pre><span style="color:rgb(0, 0, 0);"> .box {     padding: 20px;     border: 2px solid #000;     margin: 10px; }</span></pre><pre><span style="color:rgb(0, 0, 0);"> </span></pre><h2><span style="color:rgb(0, 0, 0);">Display Property</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><h3><span style="color:rgb(0, 0, 0);">Block Elements</span></h3><pre><span style="color:rgb(0, 0, 0);"> div { display: block; } </span></pre><pre><span style="color:rgb(0, 0, 0);"><br/></span></pre><h3><span style="color:rgb(0, 0, 0);">Inline Elements</span></h3><pre><span style="color:rgb(0, 0, 0);"> span { display: inline; } </span></pre><pre><span style="color:rgb(0, 0, 0);"><br/></span></pre><h3><span style="color:rgb(0, 0, 0);">Inline-Block</span></h3><pre><span style="color:rgb(0, 0, 0);"> img { display: inline-block; } </span></pre><pre><span style="color:rgb(0, 0, 0);"><br/></span></pre><h2><span style="color:rgb(0, 0, 0);">Flexbox (Most Used in LWC Layouts)</span></h2><pre><span style="color:rgb(0, 0, 0);"> .container {     display: flex;     justify-content: center; </span></pre><pre><span style="color:rgb(0, 0, 0);">    align-items: center; } </span></pre><p><span style="color:rgb(0, 0, 0);">Common Flexbox properties include:</span></p><ul><li><span style="color:rgb(0, 0, 0);">display: flex</span></li><li><span style="color:rgb(0, 0, 0);">justify-content</span></li><li><span style="color:rgb(0, 0, 0);">align-items</span></li><li><span style="color:rgb(0, 0, 0);">flex-direction</span></li><li><span style="color:rgb(0, 0, 0);">gap</span></li><li><span style="color:rgb(0, 0, 0);"><br/></span></li></ul><h2><span style="color:rgb(0, 0, 0);">Grid Layout</span></h2><pre><span style="color:rgb(0, 0, 0);"> .grid {     display: grid;     grid-template-columns: 1fr 1fr;     gap: 20px; } </span></pre><pre></pre><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">Responsive CSS with Media Queries</span></h2><pre><span style="color:rgb(0, 0, 0);"> @media (max-width: 600px) {     h1 {         font-size: 20px;     } } </span></pre><pre><span style="color:rgb(0, 0, 0);"><br/></span></pre><h2><span style="color:rgb(0, 0, 0);">CSS in Lightning Web Components</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);">In LWC, each component has its own CSS file with the same name:</span></p><pre><span style="color:rgb(0, 0, 0);">myComponent.html myComponent.js myComponent.css </span></pre><pre><span style="color:rgb(0, 0, 0);"><br/></span></pre><h3><span style="color:rgb(0, 0, 0);">Example:</span></h3><p><span style="color:rgb(0, 0, 0);"> HTML: </span></p><pre><span style="color:rgb(0, 0, 0);">      <h1>Hello Peoplewoo</h1>  </span></pre><p><span style="color:rgb(0, 0, 0);"> CSS: </span></p><pre><span style="color:rgb(0, 0, 0);"> .title {     color: blue;     font-size: 22px; } </span></pre><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h2><span style="color:rgb(0, 0, 0);">Using: host in LWC</span></h2><p><span style="color:rgb(0, 0, 0);">Used to style the root element of a component.</span></p><pre><span style="color:rgb(0, 0, 0);"> :host {     display: block;     padding: 20px; } </span></pre><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h2><span style="color:rgb(0, 0, 0);">Best Practices</span></h2><ul><li><span style="color:rgb(0, 0, 0);">Use classes instead of IDs</span></li><li><span style="color:rgb(0, 0, 0);">Follow naming conventions</span></li><li><span style="color:rgb(0, 0, 0);">Keep CSS modular</span></li><li><span style="color:rgb(0, 0, 0);">Use Flexbox for modern layouts</span></li><li><span style="color:rgb(0, 0, 0);">Avoid !important (unless needed)</span></li></ul><p><br/></p></div>
</div><div class="zpelement zpelem-carousel " data-element-id="elm_byTBvaroUVlqNQzB3l0WEQ" data-element-type="carousel" data-currentslide-index="0" data-transition="slide_left" data-zs-autoslide="false" data-zs-slider="min-height-el: zpcarousel-content-container;arrow-cont: zpcarousel-arrows-container; active-controller: zpcarousel-controller-active; controller-cont: zpcarousel-controller-container; controller: zpcarousel-controller; right-arrow: zpcarousel-arrow-right; left-arrow: zpcarousel-arrow-left;active-slide:zpcarousel-content-active; slide: zpcarousel-content; slides-cont: zpcarousel-content-container;content-cont : zpcarousel-content-inner; background: false;slide-pause-btn:zpcarousel-pause-btn;slide-play-btn:zpcarousel-play-btn;"><div class="zpcarousel-container zpcarousel-style-01"><style></style><div class="zpcarousel-content-container"><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_-dxt0NaImCeUb0jHYGM2Ow" data-slide-name="Slide 1"><div class="zpcarousel-content-inner"><div data-element-id="elm_4Jy8AFUbkHw4IXVthKXcwg" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_eO9573nNV2JPmlpkVUhEdg" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_SiJIPTsI0iZNgc4tajDCvw" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Dharmesh R.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>The explanations are clear, and the repetition really helps to reinforce the concepts. It covers everything in detail, from the basics to more advanced topics. The course includes in-depth examples that make complex ideas easy to understand. Overall, I’m really impressed and can’t wait to explore more!</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_NZnF622zgu6xIrpJo386_g" data-slide-name="Slide 2"><div class="zpcarousel-content-inner"><div data-element-id="elm_hHh-tqVupL3HL8KYT1kf9Q" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm__dSB6W4LHkpHg36wJiyBsw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_GHUL9IsOVpazUCwTJjdzMw" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Jermaine L.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>Taking this course like help me acquire all the knowledge and skills I need to excel and optimize my performance to fulfilling my operational duties in my current role as an email marketing specialist</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_v3u8hhd_AsZxORmwnoA_2g" data-slide-name="Slide 3"><div class="zpcarousel-content-inner"><div data-element-id="elm_DD4MpNQtMS1HKlrokaUzeA" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_k40UvPeZYpsuUJLZc3IAZw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_t0XTYi6tHJ5BJkc4CqF21g" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Sumit N.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>Awesome explanation. He keep repeating which helps to remind/refresh the concepts. Loved it</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_hy7Rbr8nliB0X9rRDa5aow" data-slide-name="Slide 4"><div class="zpcarousel-content-inner"><div data-element-id="elm_QL8Q-Kw-ITIb4l-A8xb-mA" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_OAbkKPefCMhNQsVayTvj2w" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_NgbzA5biiFsJ40IvZ4dfyg" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Varun V.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>It's a great course that covers everything you need to know. After almost finishing, I feel confident using the SDC platform. Definitely a 5-star experience!</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_aJlL0IwMmDJL1pq3VxCvig" data-slide-name="Slide 5"><div class="zpcarousel-content-inner"><div data-element-id="elm_WVzZlT8_Ygn-L_HvDcrbhA" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_nz3RpOWIfz2pKHIP8PmbXw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_cdESQ-gJxvN41XpT7ZaAkg" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Prajakta Nimba S.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>This course is perfect for anyone looking to build a solid foundation in Salesforce Data Cloud. The content is well-structured, easy to follow, and packed with real-world examples that make the concepts practical</span></span></p></div>
</div></div></div></div></div></div></div><div class="zpcarousel-arrows-container zpcarousel-arrow-type-01" data-arrow-style="2"><div class="zpcarousel-arrow-left" tabindex="0" role="button" aria-label="Previous"><svg aria-hidden="true" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" class="svg-icon-18px"><path d="M0,16c0,0.3,0.1,0.5,0.3,0.7l9.9,10c0.4,0.4,1,0.4,1.4,0c0.4-0.4,0.4-1,0-1.4L3.4,17H31 c0.6,0,1-0.5,1-1s-0.4-1-1-1H3.4l8.2-8.3c0.4-0.4,0.4-1,0-1.4c-0.4-0.4-1-0.4-1.4,0l-9.9,10C0.1,15.5,0,15.7,0,16z"></path></svg></div>
<div class="zpcarousel-arrow-right" tabindex="0" role="button" aria-label="Next"><svg aria-hidden="true" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" class="svg-icon-18px"><path id="arrow-right-style2-Arrow_Forward" d="M32,16c0-0.3-0.1-0.5-0.3-0.7l-9.9-10c-0.4-0.4-1-0.4-1.4,0c-0.4,0.4-0.4,1,0,1.4 l8.2,8.3H1c-0.6,0-1,0.5-1,1s0.4,1,1,1h27.6l-8.2,8.3c-0.4,0.4-0.4,1,0,1.4c0.4,0.4,1,0.4,1.4,0l9.9-10C31.9,16.5,32,16.3,32,16z"></path></svg></div>
</div><div class="zpcarousel-controller-container zpcarousel-controller-type-01"><div class="zpcarousel-controller zpcarousel-controller-active" data-slide-index="0"></div>
<div class="zpcarousel-controller " data-slide-index="1"></div><div class="zpcarousel-controller " data-slide-index="2"></div>
<div class="zpcarousel-controller " data-slide-index="3"></div><div class="zpcarousel-controller " data-slide-index="4"></div>
</div></div></div><div data-element-id="elm_Vu-0h7FBeerqTMPmZaWlug" data-element-type="heading" class="zpelement zpelem-heading "><style></style><h2
 class="zpheading zpheading-style-none zpheading-align-left zpheading-align-mobile-left zpheading-align-tablet-left " data-editor="true"><span><span style="color:rgb(0, 0, 0);">Frequently Asked Questions (FAQ)</span><br/></span></h2></div>
<div data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA" data-element-type="accordion" class="zpelement zpelem-accordion " data-tabs-inactive="false" data-icon-style="1"><style> [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion, [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content{ border-style:solid; border-color: !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content.zpaccordion-active-content:last-of-type{ border-block-end-width:1px !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion.zpaccordion-active + .zpaccordion-content{ border-block-start-color: transparent !important; } @media all and (min-width: 768px) and (max-width:991px){ [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion, [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content{ border-style:solid; border-color: !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content:last-of-type{ border-block-end-width:1px !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion.zpaccordion-active + .zpaccordion-content{ border-block-start-color: transparent !important; } } @media all and (max-width:767px){ [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion, [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content{ border-style:solid; border-color: !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content:last-of-type{ border-block-end-width:1px !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion.zpaccordion-active + .zpaccordion-content{ border-block-start-color: transparent !important; } } </style><div class="zpaccordion-container zpaccordion-style-01 zpaccordion-with-icon zpaccord-svg-icon-1 zpaccordion-icon-align-left "><div data-element-id="elm_avqPnRbxn96EwANShYaFjg" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="1. Is CSS required for LWC?" data-content-id="elm_X8MB5lkAUEcGoYBtGrpljg" style="margin-top:0;" tabindex="0" role="button" aria-label="1. Is CSS required for LWC?"><span class="zpaccordion-name">1. Is CSS required for LWC?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_X8MB5lkAUEcGoYBtGrpljg" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_u5Cj1v0VUadpxrxv948nyw" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_7ezNrxV4FkYz7RGU1G0BtQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_hae4_dzBKBBmMQbSfRCyug" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p><strong style="color:rgb(0, 0, 0);"></strong></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p><span style="color:rgb(0, 0, 0);"><span></span></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"><span></span></span></p><div><p></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);">Yes, CSS styles the entire UI of Lightning Web Components.</span></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div>
</div></div></div></div></div><div data-element-id="elm_2U5i1G2PT4th-0HwQ_qYMg" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="2. Can I use external CSS libraries in LWC?" data-content-id="elm_HWiLrHq626LLO7HEwZZO0A" style="margin-top:0;" tabindex="0" role="button" aria-label="2. Can I use external CSS libraries in LWC?"><span class="zpaccordion-name">2. Can I use external CSS libraries in LWC?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_HWiLrHq626LLO7HEwZZO0A" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_EsUHLPDiEOSRoxW1Va1vSQ" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_e_hMh4qQPANv9Gq71QOCbQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_yDDgYpCDh88L_B4yVqVDpw" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><span style="color:rgb(0, 0, 0);"><p><span></span></p><div><p></p><div><p></p><div><p></p><div><p></p><div><p></p><div><p></p><div><p></p><div><p>You can use SLDS and custom static resources.</p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div></span><p></p></div></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div></div></div></div></div></div></div>
</div></div></div></div></div><div data-element-id="elm_z819rp9QtsimO7OBe5fUQQ" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="3. What is the main difference between CSS and HTML?" data-content-id="elm_G0J2WJbaranPy8N5RGud_Q" style="margin-top:0;" tabindex="0" role="button" aria-label="3. What is the main difference between CSS and HTML?"><span class="zpaccordion-name">3. What is the main difference between CSS and HTML?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_G0J2WJbaranPy8N5RGud_Q" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_NLdjpQsYYYsfKNQ4rWhxJg" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_mCo9PctebWjYnQx_burGTQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_PUMBoTZ3jG3CqnmnOda7FA" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p>HTML structures the page, CSS styles it.</p></div><p></p></div><p></p></div><p></p></div><code></code><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div>
</div></div></div></div></div><div data-element-id="elm_MrzO9Mu2yvjD1yOveoN1ag" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="4. Does LWC support global CSS?" data-content-id="elm_VCfqx-I0okQtrLLtQgg6uQ" style="margin-top:0;" tabindex="0" role="button" aria-label="4. Does LWC support global CSS?"><span class="zpaccordion-name">4. Does LWC support global CSS?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_VCfqx-I0okQtrLLtQgg6uQ" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_83IdZWSoCFzucCnLahu5cw" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_lHAb9U1G1dgp1V6c444ATQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_Q-zMCoK5NRejxdtEjZeb0g" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p style="color:rgb(0, 0, 0);"></p><div><p style="color:rgb(0, 0, 0);"></p><div><p style="color:rgb(0, 0, 0);"></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p>No, CSS in LWC is component-scoped. Use shared CSS via static resources.</p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p style="color:rgb(0, 0, 0);"></p></div><p style="color:rgb(0, 0, 0);"></p></div><p style="color:rgb(0, 0, 0);"></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div>
</div></div></div></div></div><div data-element-id="elm_tbTU4vUzVyHxec4fh5treA" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="5. Can Flexbox and Grid be used in LWC?" data-content-id="elm_ytAT6ZF-UgNskNSKR7FuZQ" style="margin-top:0;" tabindex="0" role="button" aria-label="5. Can Flexbox and Grid be used in LWC?"><span class="zpaccordion-name">5. Can Flexbox and Grid be used in LWC?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_ytAT6ZF-UgNskNSKR7FuZQ" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_I_fDz0ybSUu9nfzEuPrMMg" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_LJZ6EEKHjUSNa8ZMVwDadw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_zjpsXejtTlBuGOWTiUljMA" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><span style="color:rgb(0, 0, 0);"><p></p><div><p></p><div><div>Yes, both are fully supported and commonly used.</div></div><p></p></div><p></p></span></div>
</div></div></div></div></div></div></div><div data-element-id="elm_8m4TfeROM6fQN9AHueEupg" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p><span style="font-family:Poppins, sans-serif;font-size:40px;font-weight:600;color:rgb(0, 0, 0);">Conclusion</span></p><div><div><span style="color:rgb(0, 0, 0);"><strong></strong></span></div><div><p></p></div>
</div><div><p></p><div><section><p></p></section></div></div><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p><div><p></p><div><p></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p><div><p></p><div><p></p><div><p></p><div><p></p></div></div></div></div></div></div></div></div></div><div><p></p><div><p></p><div><div><p></p><div></div></div><div><span style="color:rgb(0, 0, 0);">CSS is essential for building beautiful and responsive Lightning Web Components. Understanding selectors, Flexbox, spacing, and the box model will help you create professional UI designs in Salesforce.</span><div><span style="color:rgb(0, 0, 0);"><br/></span></div></div></div></div></div>
</div></div></div><p></p><div><div><h2></h2></div><div><div><h2><span style="color:rgb(0, 0, 0);">More SFDC Resources</span></h2></div><span style="color:rgb(0, 0, 0);"><br/></span><div><span style="font-style:italic;color:rgb(0, 0, 0);"><p>Start your SFMC journey today — join our&nbsp;<strong><a href="https://www.peoplewoo.com/" target="_blank" rel="">Live Training</a></strong>&nbsp;</p><p>Need help? Chat with us on&nbsp;<strong><a href="https://wa.me/%2B917875494672" rel="">WhatsApp</a></strong>&nbsp;anytime.</p><p>Learn. Practice. Get Certified. Succeed with&nbsp;<strong><a href="https://www.youtube.com/%40peoplewoo" target="_blank" rel="">Peoplewoo Skills</a></strong><a href="https://www.youtube.com/redirect?event=video_description&amp;redir_token=QUFFLUhqbUhyQUhpemJaOGZXR1RFRmxub3lNZlR4QW43QXxBQ3Jtc0ttMFhRMWtISFBVdlhJYlNab3NZS0hRd0RrQ0hwaTNGVEVhX2hVWUo3TktGN3VGa2FIWWtsQ1QtM0wxWG1ud0ZEeG02OG1CU3ZvVkE3ekNUUjZoaWFxZmhsUHNMR2diOEl5Wm5ROEpiUTVJSkJfQjF1MA&amp;q=https%3A%2F%2Fchat.whatsapp.com%2FKGLPRc9tofo0oiyd9oQW4E&amp;v=d_fgnADOmiQ" target="_blank" rel="">.</a></p></span></div></div><div><span style="font-style:italic;color:rgb(0, 0, 0);"><p><a href="https://www.youtube.com/%40peoplewoo" rel=""></a></p></span></div>
</div><p></p></div><p></p></div></div></div><div data-element-id="elm_KnMYXjQPWbIKC85JEm98qw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-4 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div class="zpelement zpelem-newsletter " data-list-id="" data-integ-type="" data-element-id="elm_eV_tPTfOVvRvGG8gHurC3Q" data-element-type="newsletter"><style type="text/css"></style><div class="zpnewsletter-container zpnewsletter-style-01 "><h2 class="zpheading zpheading-align-center zpnewsletter-heading" data-editor="true">Subscribe to our newsletter</h2><p class="zptext zptext-align-center zpnewsletter-desc" data-editor="true"> Stay informed about our latest updates through email. Subscribe here.</p><form class="zpform-container zpnewsletter-input-container"><label for="Email_elm_eV_tPTfOVvRvGG8gHurC3Q" class="zs-visually-hidden">Email</label><input type="text" id="Email_elm_eV_tPTfOVvRvGG8gHurC3Q" name="email" placeholder="Email" class="zpnewsletter-email-input-field"/><button type="submit" class="zpbutton zpnewsletter-button zpbutton-type-primary zpbutton-size-md">Subscribe</button></form></div>
</div><div data-element-id="elm_3-a_z2EN2Rdvo4WVGz-Y1Q" itemscope="" data-element-type="socialprofile" class="zpelement zpelem-socialprofile" data-element-id="elm_3-a_z2EN2Rdvo4WVGz-Y1Q"><style type="text/css"></style><div data-socialprofile_container class="zpsocialprofile-container zpsocialprofile-size-md zpsocialprofile-halign-center zpsocialprofile-align-mobile-center zpsocialprofile-align-tablet-center zpsocialprofile-style-none zpsocialprofile-type-color "><a href="https://www.linkedin.com/company/peoplewoo" class="zpsocialprofile-wrapper zpsocialprofile-linkedin" target="_blank" aria-label="LinkedIn"><svg aria-hidden="true" class="zpsocialprofile" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><path d="M64 4.706v54.588A4.706 4.706 0 0 1 59.294 64H4.706A4.706 4.706 0 0 1 0 59.294V4.706A4.706 4.706 0 0 1 4.706 0h54.588A4.706 4.706 0 0 1 64 4.706zM18.824 24.47H9.412v30.117h9.412V24.471zm.847-10.353a5.421 5.421 0 0 0-5.384-5.46h-.17a5.459 5.459 0 0 0 0 10.918 5.421 5.421 0 0 0 5.554-5.289v-.17zm34.917 22.174c0-9.054-5.76-12.574-11.482-12.574a10.73 10.73 0 0 0-9.525 4.856h-.263v-4.103H24.47v30.117h9.411V38.57a6.25 6.25 0 0 1 5.647-6.738h.358c2.993 0 5.214 1.882 5.214 6.625v16.132h9.412l.075-18.296z"/></svg></a><a href="https://www.youtube.com/@peoplewoo" class="zpsocialprofile-wrapper zpsocialprofile-youtube" target="_blank" aria-label="YouTube"><svg aria-hidden="true" class="zpsocialprofile" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><path d="M32.786 10l.106.001.392.002c1.94.009 6.896.05 11.873.237l.765.03c4.589.187 9.063.504 11.068 1.04 2.71.73 4.84 2.86 5.56 5.56 1.204 4.505 1.301 13.515 1.31 14.939v.382c-.009 1.424-.106 10.434-1.31 14.939a7.885 7.885 0 0 1-5.56 5.56c-4.455 1.19-21.107 1.3-24.098 1.309h-.923c-2.99-.01-19.635-.118-24.099-1.309a7.885 7.885 0 0 1-5.56-5.56c-.401-1.502-.68-3.504-.873-5.559l-.058-.65c-.314-3.688-.368-7.394-.377-8.552L1 32.124v-.194-.054l.002-.245c.009-1.158.063-4.864.377-8.552l.058-.65c.193-2.055.472-4.057.873-5.559a7.885 7.885 0 0 1 5.56-5.56c4.296-1.146 19.878-1.29 23.706-1.307L31.97 10h.105zM26.15 22.57v18.86L42.48 32l-16.33-9.43z"/></svg></a><a href="https://www.instagram.com/peoplewoo_consulting/" class="zpsocialprofile-wrapper zpsocialprofile-instagram" target="_blank" aria-label="Instagram"><svg aria-hidden="true" class="zpsocialprofile" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient x1="72.5875139%" y1="0%" x2="28.281045%" y2="106.524963%" id="linearGradient-1"><stop stop-color="#9A1DF1" offset="0%"></stop><stop stop-color="#ED1E64" offset="49.3618943%"></stop><stop stop-color="#FFD002" offset="100%"></stop></linearGradient><path d="M18.7470755,0.221595251 C15.3422244,0.382299247 13.0166948,0.927668835 10.9845413,1.72394402 C8.8808805,2.5440464 7.09761014,3.64310557 5.32364538,5.42434073 C3.54758782,7.20661909 2.45687425,8.99304465 1.64301187,11.0988238 C0.855031083,13.1361614 0.321066295,15.4627981 0.170711099,18.8697484 C0.0214311023,22.2829708 -0.012802497,23.3716107 0.00383750267,32.0611721 C0.0204135023,40.7496967 0.0587623014,41.8403975 0.221527098,45.254631 C0.384285494,48.6585158 0.927619882,50.9830597 1.72388866,53.0162565 C2.54502785,55.1199428 3.64296062,56.9022276 5.42521338,58.6772547 C7.20645494,60.4522883 8.9939045,61.5419779 11.1006629,62.3569282 C13.1359204,63.1438722 15.46353,63.6799042 18.8694627,63.8291842 C22.2826082,63.9795458 23.3722466,64.0127042 32.0596384,63.9961282 C40.7511454,63.9795458 41.8408478,63.941165 45.2539933,63.7794178 C48.6588444,63.616653 50.9822875,63.0712898 53.0165275,62.2770946 C55.1201883,61.4538563 56.9034586,60.3579395 58.6774234,58.5756547 C60.4513945,56.7943876 61.5421081,55.0069188 62.3560345,52.9001285 C63.1440153,50.8648453 63.6800089,48.5372038 63.8282777,45.1333446 C63.9775577,41.7180679 64.0128665,40.6273351 63.9962265,31.9388169 C63.9796441,23.2492555 63.9402841,22.1606092 63.7785369,18.7484684 C63.6167897,15.3414861 63.0714329,13.0179854 62.2761753,10.9837454 C61.4540249,8.88005905 60.3571033,7.0987919 58.5758618,5.32274074 C56.7946202,3.54875038 55.0071771,2.4559312 52.9004123,1.64411682 C50.8641371,0.856129637 48.5375324,0.319048049 45.1316061,0.171822452 C41.7184606,0.0204496555 40.6288222,-0.0127087437 31.9383264,0.00387365592 C23.2499298,0.0204560555 22.160285,0.0577936547 18.7470755,0.221595251 M19.1203747,58.0696835 C16.0006051,57.9338499 14.3064996,57.4154436 13.1774308,56.9810372 C11.682346,56.4024772 10.6154853,55.7088452 9.49261809,54.5942852 C8.37184371,53.4755524 7.67612533,52.4117765 7.09241974,50.9198021 C6.65381495,49.7906885 6.12611576,48.0986182 5.97993337,44.9788358 C5.82129017,41.6060871 5.78502777,40.5941383 5.76945657,32.0497481 C5.75287417,23.5074443 5.78394617,22.4954955 5.93120377,19.1196428 C6.06491897,16.0019213 6.58648055,14.3057037 7.01983094,13.1776334 C7.59834613,11.6804686 8.28988531,10.6156558 9.40655089,9.49280784 C10.5252389,8.36992787 11.5889956,7.67628948 13.081994,7.0925775 C14.2100452,6.65191191 15.9021283,6.12831512 19.0208227,5.98007832 C22.3956194,5.82038552 23.4064738,5.78618392 31.9486944,5.76960153 C40.4929438,5.75298713 41.5048734,5.78307992 44.8807453,5.93134872 C47.9983644,6.06715032 49.6945564,6.58350231 50.8216028,7.0199951 C52.3176987,7.59852308 53.3845595,8.28801427 54.5064091,9.40674704 C55.628201,10.5254798 56.323913,11.5871694 56.9076186,13.0832846 C57.3482458,14.2082189 57.8718362,15.9023821 58.0190938,19.0201036 C58.1797594,22.3949387 58.2160858,23.4068555 58.231593,31.9491913 C58.2481754,40.4935879 58.2171034,41.5054983 58.0688346,44.8792902 C57.933033,47.9990726 57.4156442,49.6942725 56.9802074,50.8243973 C56.4016858,52.3184581 55.710089,53.3853316 54.5924123,54.5082116 C53.4747995,55.6269444 52.4110427,56.3246916 50.9169691,56.9084356 C49.7910044,57.348026 48.0968988,57.8726723 44.9802333,58.0209411 C41.6055006,58.1795587 40.5945822,58.2158467 32.0492576,58.2314179 C23.507037,58.2480131 22.4961826,58.2158659 19.1203747,58.0696835 M45.2073489,14.8946189 C45.2114717,17.0138765 46.9346204,18.729806 49.053846,18.7256663 C51.1740891,18.7215116 52.8900251,16.9993549 52.8869253,14.8800973 C52.8827483,12.7608398 51.1595931,11.043899 49.03935,11.0480387 C46.9191132,11.052187 45.2031773,12.7753614 45.2073489,14.8946189 M15.5693094,32.0310857 C15.5869347,41.1063495 22.957565,48.4469894 32.0305952,48.4293954 C41.1046942,48.4117446 48.4493852,41.0430983 48.4318231,31.9678665 C48.414134,22.8957323 41.0424926,15.5509133 31.967376,15.5685072 C22.8942818,15.5861645 15.5516836,22.9579403 15.5693094,32.0310857 M21.3328633,32.0196937 C21.3225058,26.1295435 26.0897377,21.344654 31.978768,21.3342528 C37.868867,21.3228812 42.6547101,26.0880651 42.6661227,31.9792585 C42.6775581,37.870452 37.9103198,42.6542983 32.0192032,42.6657427 C26.1301793,42.6771143 21.3442722,37.9108872 21.3328633,32.0196937" id="path-2"></path></defs><g stroke="none" stroke-width="1" fill-rule="evenodd"><mask fill="white"><use xlink:href="#path-2"></use></mask><use class="cl-path-inherit" fill="url(#linearGradient-1)" xlink:href="#path-2"></use></g></svg></a><a href="https://wa.me/+917875494672" class="zpsocialprofile-wrapper zpsocialprofile-whatsapp" target="_blank" aria-label="WhatsApp"><svg aria-hidden="true" class="zpsocialprofile" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><defs><linearGradient x1="49.9999983%" y1="100%" x2="49.9999983%" y2="0.00237659529%" id="wtlinearGradient-1"><stop stop-color="#F9F9F9" offset="0%"></stop><stop stop-color="#FFFFFF" offset="100%"></stop></linearGradient></defs><g stroke="none" stroke-width="1" fill-rule="evenodd"><g fill-rule="nonzero"><path class="cl-path-transparent" d="M1.10771574,62.8926967 L5.4728797,47.0284478 C2.78074848,42.3847708 1.36440022,37.1174751 1.3659281,31.7224137 C1.37356752,14.8421228 15.1734138,1.1088243 32.1283401,1.1088243 C40.3575222,1.11186634 48.0825026,4.30144735 53.8884609,10.0874112 C59.6974751,15.873375 62.8938079,23.5651781 62.8907543,31.745229 C62.8831127,48.6255199 49.0832664,62.3603394 32.1283401,62.3603394 C32.1283401,62.3603394 32.1283401,62.3603394 32.1283401,62.3603394 L32.1145892,62.3603394 C26.9656208,62.3588184 21.9067976,61.0720346 17.4148193,58.633838 L1.10618786,62.8911757 L1.10771574,62.8926967 Z" fill="#25D266"></path><path class="cl-path-inherit" d="M32.1344517,0 C40.6585153,0.00304204197 48.6585147,3.30669962 54.6753211,9.30104333 C60.6905995,15.295387 64.0030515,23.264016 64,31.7376239 C63.9924328,49.0469187 49.9804471,63.1660029 32.660306,63.4466537 L32.1344517,63.4509114 L32.1344517,63.4509114 L32.1207007,63.4509114 C26.7883863,63.4493904 21.5477449,62.116976 16.893811,59.5905602 L0.00152788378,64 L0,64 L4.52100811,47.5668893 C1.73262021,42.7574209 0.265851778,37.3015186 0.267379662,31.7117665 C0.27501908,14.2261093 14.5683718,0 32.1344517,0 Z M32.143619,5.35703591 C17.5339943,5.35703591 5.65316999,17.179932 5.6470572,31.7132875 C5.64553057,36.6931103 7.04507211,41.5436462 9.69595047,45.7401431 L10.3269665,46.7379328 L7.65011409,56.464862 L17.6745596,53.8487059 L17.6760875,53.8487059 L18.6432379,54.4190888 C22.7089366,56.8207809 27.37051,58.0908335 32.1237565,58.0938755 L32.1344517,58.0938755 C46.7318533,58.0938755 58.6142055,46.2694584 58.6203176,31.7345818 C58.6218449,24.6907337 55.8701262,18.0682083 50.8693626,13.0868646 C45.868599,8.10552083 39.2192487,5.36007795 32.143619,5.35703591 Z M20.8510299,17.0688705 C21.3827335,17.0688705 21.9129092,17.0673765 22.3773858,17.0871497 C22.9457586,17.1099651 23.5737188,17.1358224 24.1695935,18.4560686 L24.1695935,18.4560686 C24.8785316,20.0242413 26.4262779,23.9439124 26.6249028,24.3408988 C26.8235276,24.7378853 26.9564535,25.2002757 26.6906018,25.729591 C26.42475,26.2589063 26.2918241,26.5889678 25.8945743,27.0513582 C25.4957966,27.5152696 25.057294,28.0856525 24.6997692,28.4400504 C24.2994636,28.8339948 23.8854071,29.2644438 24.3498838,30.0568957 C24.8143605,30.8508686 26.4125269,33.4457304 28.7792189,35.5462604 C31.8212355,38.2460727 34.3865524,39.0826342 35.1825798,39.4796207 C35.9786073,39.8766072 36.4430839,39.8096822 36.9075606,39.2803669 C37.3720373,38.7525727 38.8983932,36.966894 39.4285688,36.1744421 C39.9602724,35.3804691 40.4904481,35.512798 41.2207765,35.7774556 C41.9511049,36.0405922 45.8655432,37.9585997 46.6615706,38.3555862 C47.4575981,38.7525727 47.9893016,38.9503054 48.1879265,39.2803669 C48.3865514,39.6119495 48.3865514,41.1983744 47.7234499,43.0494569 C47.0588204,44.9005395 43.8090116,46.6846971 42.3483547,46.8170259 C42.2952399,46.8218379 42.2422464,46.8271688 42.189112,46.8328475 L42.0290247,46.850756 C40.6602396,47.0089406 39.0295689,47.2820712 32.7929696,44.8336146 C24.6997692,41.6562017 19.5905258,33.3970578 19.1917482,32.8692635 C18.7944984,32.3399482 15.9404115,28.5708582 15.9404115,24.6709604 C15.9404115,20.7710626 17.996943,18.8530551 18.7272715,18.0606032 C19.4575999,17.2681512 20.3193264,17.0688705 20.8510299,17.0688705 Z" fill="url(#wtlinearGradient-1)"></path></g></g></svg></a></div>
</div></div></div></div></div></div> ]]></content:encoded><pubDate>Fri, 28 Nov 2025 16:52:09 +0530</pubDate></item><item><title><![CDATA[Basics of HTML | Beginner’s Guide to LWC | Peoplewoo Skills ]]></title><link>https://www.peoplewoo.com/blogs/post/basics-of-html-beginner-s-guide-to-lwc-peoplewoo-skills</link><description><![CDATA[ HTML (HyperText Markup Language) is the foundation of every website and web application—including&nbsp; Lightning Web Components (LWC) . Before learnin ]]></description><content:encoded><![CDATA[<div class="zpcontent-container blogpost-container "><div data-element-id="elm_VSFK6u_qTROrUlbkwFcnHQ" data-element-type="section" class="zpsection "><style type="text/css"></style><div class="zpcontainer-fluid zpcontainer"><div data-element-id="elm_AX1H_FWwTISZjTAoLhORpg" data-element-type="row" class="zprow zprow-container zpalign-items- zpjustify-content- " data-equal-column=""><style type="text/css"></style><div data-element-id="elm_QmO3R2StSMOPjvWG4mBR2w" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-8 zpcol-sm-12 zpalign-self- "><style type="text/css"></style><div data-element-id="elm_zt8AQ9V5TPuN5ANXWKA81A" data-element-type="image" class="zpelement zpelem-image "><style> @media (min-width: 992px) { [data-element-id="elm_zt8AQ9V5TPuN5ANXWKA81A"] .zpimage-container figure img { width: 730px ; height: 677.66px ; } } </style><div data-caption-color="" data-size-tablet="" data-size-mobile="" data-align="center" data-tablet-image-separate="false" data-mobile-image-separate="false" class="zpimage-container zpimage-align-center zpimage-tablet-align-center zpimage-mobile-align-center zpimage-size-fit zpimage-tablet-fallback-fit zpimage-mobile-fallback-fit hb-lightbox " data-lightbox-options="
                type:fullscreen,
                theme:dark"><figure role="none" class="zpimage-data-ref"><span class="zpimage-anchor" role="link" tabindex="0" aria-label="Open Lightbox" style="cursor:pointer;"><picture><img class="zpimage zpimage-style-none zpimage-space-none " src="/Group%20300.png" size="fit" data-lightbox="true"/></picture></span></figure></div>
</div><div data-element-id="elm_pfjc3-aGJQ56E4Rt5J6YrA" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><section><p><span style="color:rgb(0, 0, 0);"></span></p></section><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p></div>
<div><p></p><div><header><p></p><div><section><p><span style="color:rgb(0, 0, 0);"></span></p></section><div><p></p><div><section><p><span style="color:rgb(0, 0, 0);"></span></p></section><div><section><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);">HTML (HyperText Markup Language) is the foundation of every website and web application—including&nbsp;<strong>Lightning Web Components (LWC)</strong>. Before learning LWC, it is essential to understand how HTML works because LWC uses HTML templates to design layouts, UI, and component structure.</span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h2><span style="color:rgb(0, 0, 0);">What is HTML?</span></h2><p><span style="color:rgb(0, 0, 0);"><strong>HTML</strong>&nbsp;is a markup language used to create the structure of web pages. It tells the browser what elements to display—such as text, images, buttons, forms, links, etc.</span></p><p><span style="color:rgb(0, 0, 0);">HTML is made up of:</span></p><ul><li><span style="color:rgb(0, 0, 0);">Elements</span></li><li><span style="color:rgb(0, 0, 0);">Tags</span></li><li><span style="color:rgb(0, 0, 0);">Attributes</span></li><li><span style="color:rgb(0, 0, 0);">Nested structures</span></li></ul><pre><code style="color:rgb(0, 0, 0);"> &lt;h1&gt;Hello Peoplewoo Skills&lt;/h1&gt; &lt;p&gt;Welcome to HTML for LWC!&lt;/p&gt; </code></pre></div><p></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p></div></div></div></div></div></section></div></div></div></div></header></div><p></p><p></p><div><h2><span style="color:rgb(0, 0, 0);">Watch Our Video Tutorial</span></h2></div>
<p></p></div><section><div><h2><span style="color:rgb(0, 0, 0);"></span></h2></div>
<p></p></section></div><p></p></div></div><div data-element-id="elm_k9szvFcukiZd6M-3wQHIxg" data-element-type="video" class="zpelement zpelem-video "><style type="text/css"> @media (max-width: 767px) { [data-element-id="elm_k9szvFcukiZd6M-3wQHIxg"].zpelem-video iframe.zpvideo{ width:560px !important; height:315px !important; } } @media all and (min-width: 768px) and (max-width:991px){ [data-element-id="elm_k9szvFcukiZd6M-3wQHIxg"].zpelem-video iframe.zpvideo{ width:560px !important; height:315px !important; } } </style><div class="zpvideo-container zpiframe-align-left zpiframe-mobile-align-center zpiframe-tablet-align-center"><iframe class="zpvideo " width="2000" height="315" src="//www.youtube.com/embed/7rjNZtG7ExI?enablejsapi=1" frameborder="0" allowfullscreen id=youtube-video-1 data-api=youtube></iframe></div>
</div><div data-element-id="elm_QlHXRdluq-pxYjAQryfSiQ" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><h1></h1><p><span style="color:rgb(0, 0, 0);"><br/></span></p><p></p><h2><span style="color:rgb(0, 0, 0);">Why HTML Is Important for LWC</span></h2><p><span style="color:rgb(0, 0, 0);">LWC uses HTML to define the UI. Everything you see on an LWC page—labels, layouts, buttons, forms—is built using an HTML template.</span></p><p><span style="color:rgb(0, 0, 0);">In LWC:</span></p><ul><li><span style="color:rgb(0, 0, 0);">Each component has a <strong>.html</strong> template file</span></li><li><span style="color:rgb(0, 0, 0);">HTML tags are used to display data</span></li><li><span style="color:rgb(0, 0, 0);">HTML attributes help link JS and LWC features</span></li><li><span style="color:rgb(0, 0, 0);">Conditional rendering uses HTML directives</span></li><li><span style="color:rgb(0, 0, 0);">Loops render lists through template syntax</span></li></ul><pre><code style="color:rgb(0, 0, 0);"> &lt;template&gt;     &lt;h1&gt;{greeting}&lt;/h1&gt;     &lt;button&gt;Click Me&lt;/button&gt; &lt;/template&gt; </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h2><span style="color:rgb(0, 0, 0);">Basic Structure of an HTML Document</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><pre><code style="color:rgb(0, 0, 0);"> &lt;!DOCTYPE html&gt; &lt;html&gt; &lt;head&gt;     &lt;title&gt;My First Page&lt;/title&gt; &lt;/head&gt; &lt;body&gt; </code></pre><pre><code style="color:rgb(0, 0, 0);">    &lt;h1&gt;Hello World!&lt;/h1&gt; &lt;/body&gt; &lt;/html&gt; </code></pre><p><span style="color:rgb(0, 0, 0);">This structure is similar to how LWC templates are built (without &lt;html&gt;, &lt;head&gt;, &lt;body&gt; tags).</span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h2><span style="color:rgb(0, 0, 0);">HTML Tags Every LWC Developer Should Know</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><h3><span style="color:rgb(0, 0, 0);">1. Heading Tags (&lt;h1&gt; to &lt;h6&gt;)</span></h3><pre><code style="color:rgb(0, 0, 0);"> &lt;h1&gt;Main Heading&lt;/h1&gt; &lt;h2&gt;Sub Heading&lt;/h2&gt; </code></pre><h3><span style="color:rgb(0, 0, 0);">2. Paragraph Tag</span></h3><pre><code style="color:rgb(0, 0, 0);"> &lt;p&gt;This is a paragraph.&lt;/p&gt; </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h3><span style="color:rgb(0, 0, 0);">3. Anchor Tag (Links)</span></h3><pre><code style="color:rgb(0, 0, 0);"> &lt;a href=&quot;https://peoplewooskills.com&quot;&gt;Visit Us&lt;/a&gt; </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h3><span style="color:rgb(0, 0, 0);">4. Image Tag</span></h3><pre><code style="color:rgb(0, 0, 0);"> &lt;img src=&quot;logo.png&quot; alt=&quot;Peoplewoo Skills Logo&quot;&gt; </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h3><span style="color:rgb(0, 0, 0);">5. Button Tag</span></h3><pre><code style="color:rgb(0, 0, 0);"> &lt;button&gt;Click Me&lt;/button&gt; </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h3><span style="color:rgb(0, 0, 0);">6. Div &amp; Span</span></h3><pre><code style="color:rgb(0, 0, 0);"> &lt;div&gt;Block element&lt;/div&gt; &lt;span&gt;Inline text&lt;/span&gt; </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h2><span style="color:rgb(0, 0, 0);">Lists in HTML</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><h3><span style="color:rgb(0, 0, 0);">Ordered List</span></h3><pre><code style="color:rgb(0, 0, 0);"> &lt;ol&gt;     &lt;li&gt;HTML&lt;/li&gt;     &lt;li&gt;CSS&lt;/li&gt; &lt;/ol&gt; </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h3><span style="color:rgb(0, 0, 0);">Unordered List</span></h3><pre><code style="color:rgb(0, 0, 0);"> &lt;ul&gt;     &lt;li&gt;Salesforce&lt;/li&gt;     &lt;li&gt;LWC&lt;/li&gt; &lt;/ul&gt; </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h2><span style="color:rgb(0, 0, 0);">HTML Attributes</span></h2><p><span style="color:rgb(0, 0, 0);">Attributes provide extra information to elements.</span></p><pre><code style="color:rgb(0, 0, 0);"> &lt;img src=&quot;image.jpg&quot; width=&quot;200&quot; height=&quot;200&quot;&gt; </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h3><span style="color:rgb(0, 0, 0);">Common Attributes</span></h3><ul><li><code style="color:rgb(0, 0, 0);">id</code></li><li><code style="color:rgb(0, 0, 0);">class</code></li><li><code style="color:rgb(0, 0, 0);">style</code></li><li><code style="color:rgb(0, 0, 0);">src</code></li><li><code style="color:rgb(0, 0, 0);">href</code></li></ul><div><span style="font-family:monospace;color:rgb(0, 0, 0);"><br/></span></div><h2><span style="color:rgb(0, 0, 0);">Forms in HTML</span></h2><p><span style="color:rgb(0, 0, 0);">Forms are important in LWC for handling user input.</span></p><pre><code style="color:rgb(0, 0, 0);"> &lt;form&gt;     &lt;label&gt;Name:&lt;/label&gt;     &lt;input type=&quot;text&quot; name=&quot;username&quot;&gt;  </code></pre><pre><code style="color:rgb(0, 0, 0);">   &lt;button type=&quot;submit&quot;&gt;Submit&lt;/button&gt; &lt;/form&gt; </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h2><span style="color:rgb(0, 0, 0);">HTML Tables</span></h2><pre><code style="color:rgb(0, 0, 0);"> &lt;table border=&quot;1&quot;&gt;     &lt;tr&gt;         &lt;th&gt;Name&lt;/th&gt;         &lt;th&gt;Age&lt;/th&gt;   </code></pre><pre><code style="color:rgb(0, 0, 0);">  &lt;/tr&gt;     &lt;tr&gt;         &lt;td&gt;Amit&lt;/td&gt;         &lt;td&gt;25&lt;/td&gt;     &lt;/tr&gt; &lt;/table&gt; </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><pre></pre><h2><span style="color:rgb(0, 0, 0);">Semantic HTML (Very Important for LWC)</span></h2><p><span style="color:rgb(0, 0, 0);">Semantic tags make HTML meaningful and help with SEO and accessibility.</span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h3><span style="color:rgb(0, 0, 0);">Common Semantic Tags</span></h3><ul><li><span style="color:rgb(0, 0, 0);">&lt;header&gt;</span></li><li><span style="color:rgb(0, 0, 0);">&lt;nav&gt;</span></li><li><span style="color:rgb(0, 0, 0);">&lt;section&gt;</span></li><li><span style="color:rgb(0, 0, 0);">&lt;article&gt;</span></li><li><span style="color:rgb(0, 0, 0);">&lt;footer&gt;</span></li></ul><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h2><span style="color:rgb(0, 0, 0);">HTML in LWC Templates</span></h2><p><span style="color:rgb(0, 0, 0);">LWC templates use HTML with Salesforce-specific enhancements.</span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h3><span style="color:rgb(0, 0, 0);">Interpolation (Displaying JS data)</span></h3><pre><code style="color:rgb(0, 0, 0);"> &lt;p&gt;Welcome, {userName}&lt;/p&gt; </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h3><span style="color:rgb(0, 0, 0);">Conditional Rendering</span></h3><pre><code style="color:rgb(0, 0, 0);"> &lt;template if:true={isVisible}&gt;     &lt;p&gt;This is visible&lt;/p&gt; &lt;/template&gt; </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h3><span style="color:rgb(0, 0, 0);">Loop Rendering</span></h3><pre><code style="color:rgb(0, 0, 0);"> &lt;template for:each={students} for:item=&quot;stu&quot;&gt;  </code></pre><pre><code style="color:rgb(0, 0, 0);">   &lt;p key=&quot;{stu.id}&quot;&gt;{stu.name}&lt;/p&gt; &lt;/template&gt; </code></pre><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h2><span style="color:rgb(0, 0, 0);">Best Practices for HTML in LWC</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><ul><li><span style="color:rgb(0, 0, 0);">Use semantic HTML for clean structure</span></li><li><span style="color:rgb(0, 0, 0);">Always use <code>key</code> attribute inside loops</span></li><li><span style="color:rgb(0, 0, 0);">Do not use inline JavaScript inside HTML</span></li><li><span style="color:rgb(0, 0, 0);">Use <code>class</code> for styling with CSS, not inline styles</span></li><li><span style="color:rgb(0, 0, 0);">Keep HTML simple and accessible</span></li></ul><div><span style="color:rgb(0, 0, 0);"><br/></span></div><h2><span style="color:rgb(0, 0, 0);">Common Mistakes to Avoid</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><ul><li><span style="color:rgb(0, 0, 0);">Not closing tags properly</span></li><li><span style="color:rgb(0, 0, 0);">Using outdated tags like &lt;center&gt;</span></li><li><span style="color:rgb(0, 0, 0);">Mixing CSS and JS inside HTML</span></li><li><span style="color:rgb(0, 0, 0);">Missing alt text for images</span></li><li><span style="color:rgb(0, 0, 0);">Incorrect nesting of elements</span></li></ul></div>
</div><div class="zpelement zpelem-carousel " data-element-id="elm_byTBvaroUVlqNQzB3l0WEQ" data-element-type="carousel" data-currentslide-index="0" data-transition="slide_left" data-zs-autoslide="false" data-zs-slider="min-height-el: zpcarousel-content-container;arrow-cont: zpcarousel-arrows-container; active-controller: zpcarousel-controller-active; controller-cont: zpcarousel-controller-container; controller: zpcarousel-controller; right-arrow: zpcarousel-arrow-right; left-arrow: zpcarousel-arrow-left;active-slide:zpcarousel-content-active; slide: zpcarousel-content; slides-cont: zpcarousel-content-container;content-cont : zpcarousel-content-inner; background: false;slide-pause-btn:zpcarousel-pause-btn;slide-play-btn:zpcarousel-play-btn;"><div class="zpcarousel-container zpcarousel-style-01"><style></style><div class="zpcarousel-content-container"><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_-dxt0NaImCeUb0jHYGM2Ow" data-slide-name="Slide 1"><div class="zpcarousel-content-inner"><div data-element-id="elm_4Jy8AFUbkHw4IXVthKXcwg" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_eO9573nNV2JPmlpkVUhEdg" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_SiJIPTsI0iZNgc4tajDCvw" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Dharmesh R.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>The explanations are clear, and the repetition really helps to reinforce the concepts. It covers everything in detail, from the basics to more advanced topics. The course includes in-depth examples that make complex ideas easy to understand. Overall, I’m really impressed and can’t wait to explore more!</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_NZnF622zgu6xIrpJo386_g" data-slide-name="Slide 2"><div class="zpcarousel-content-inner"><div data-element-id="elm_hHh-tqVupL3HL8KYT1kf9Q" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm__dSB6W4LHkpHg36wJiyBsw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_GHUL9IsOVpazUCwTJjdzMw" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Jermaine L.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>Taking this course like help me acquire all the knowledge and skills I need to excel and optimize my performance to fulfilling my operational duties in my current role as an email marketing specialist</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_v3u8hhd_AsZxORmwnoA_2g" data-slide-name="Slide 3"><div class="zpcarousel-content-inner"><div data-element-id="elm_DD4MpNQtMS1HKlrokaUzeA" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_k40UvPeZYpsuUJLZc3IAZw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_t0XTYi6tHJ5BJkc4CqF21g" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Sumit N.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>Awesome explanation. He keep repeating which helps to remind/refresh the concepts. Loved it</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_hy7Rbr8nliB0X9rRDa5aow" data-slide-name="Slide 4"><div class="zpcarousel-content-inner"><div data-element-id="elm_QL8Q-Kw-ITIb4l-A8xb-mA" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_OAbkKPefCMhNQsVayTvj2w" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_NgbzA5biiFsJ40IvZ4dfyg" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Varun V.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>It's a great course that covers everything you need to know. After almost finishing, I feel confident using the SDC platform. Definitely a 5-star experience!</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_aJlL0IwMmDJL1pq3VxCvig" data-slide-name="Slide 5"><div class="zpcarousel-content-inner"><div data-element-id="elm_WVzZlT8_Ygn-L_HvDcrbhA" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_nz3RpOWIfz2pKHIP8PmbXw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_cdESQ-gJxvN41XpT7ZaAkg" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Prajakta Nimba S.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>This course is perfect for anyone looking to build a solid foundation in Salesforce Data Cloud. The content is well-structured, easy to follow, and packed with real-world examples that make the concepts practical</span></span></p></div>
</div></div></div></div></div></div></div><div class="zpcarousel-arrows-container zpcarousel-arrow-type-01" data-arrow-style="2"><div class="zpcarousel-arrow-left" tabindex="0" role="button" aria-label="Previous"><svg aria-hidden="true" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" class="svg-icon-18px"><path d="M0,16c0,0.3,0.1,0.5,0.3,0.7l9.9,10c0.4,0.4,1,0.4,1.4,0c0.4-0.4,0.4-1,0-1.4L3.4,17H31 c0.6,0,1-0.5,1-1s-0.4-1-1-1H3.4l8.2-8.3c0.4-0.4,0.4-1,0-1.4c-0.4-0.4-1-0.4-1.4,0l-9.9,10C0.1,15.5,0,15.7,0,16z"></path></svg></div>
<div class="zpcarousel-arrow-right" tabindex="0" role="button" aria-label="Next"><svg aria-hidden="true" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" class="svg-icon-18px"><path id="arrow-right-style2-Arrow_Forward" d="M32,16c0-0.3-0.1-0.5-0.3-0.7l-9.9-10c-0.4-0.4-1-0.4-1.4,0c-0.4,0.4-0.4,1,0,1.4 l8.2,8.3H1c-0.6,0-1,0.5-1,1s0.4,1,1,1h27.6l-8.2,8.3c-0.4,0.4-0.4,1,0,1.4c0.4,0.4,1,0.4,1.4,0l9.9-10C31.9,16.5,32,16.3,32,16z"></path></svg></div>
</div><div class="zpcarousel-controller-container zpcarousel-controller-type-01"><div class="zpcarousel-controller zpcarousel-controller-active" data-slide-index="0"></div>
<div class="zpcarousel-controller " data-slide-index="1"></div><div class="zpcarousel-controller " data-slide-index="2"></div>
<div class="zpcarousel-controller " data-slide-index="3"></div><div class="zpcarousel-controller " data-slide-index="4"></div>
</div></div></div><div data-element-id="elm_Vu-0h7FBeerqTMPmZaWlug" data-element-type="heading" class="zpelement zpelem-heading "><style></style><h2
 class="zpheading zpheading-style-none zpheading-align-left zpheading-align-mobile-left zpheading-align-tablet-left " data-editor="true"><span><span style="color:rgb(0, 0, 0);">Frequently Asked Questions (FAQ)</span><br/></span></h2></div>
<div data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA" data-element-type="accordion" class="zpelement zpelem-accordion " data-tabs-inactive="false" data-icon-style="1"><style> [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion, [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content{ border-style:solid; border-color: !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content.zpaccordion-active-content:last-of-type{ border-block-end-width:1px !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion.zpaccordion-active + .zpaccordion-content{ border-block-start-color: transparent !important; } @media all and (min-width: 768px) and (max-width:991px){ [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion, [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content{ border-style:solid; border-color: !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content:last-of-type{ border-block-end-width:1px !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion.zpaccordion-active + .zpaccordion-content{ border-block-start-color: transparent !important; } } @media all and (max-width:767px){ [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion, [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content{ border-style:solid; border-color: !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content:last-of-type{ border-block-end-width:1px !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion.zpaccordion-active + .zpaccordion-content{ border-block-start-color: transparent !important; } } </style><div class="zpaccordion-container zpaccordion-style-01 zpaccordion-with-icon zpaccord-svg-icon-1 zpaccordion-icon-align-left "><div data-element-id="elm_avqPnRbxn96EwANShYaFjg" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="1. Do we need HTML to learn LWC?" data-content-id="elm_X8MB5lkAUEcGoYBtGrpljg" style="margin-top:0;" tabindex="0" role="button" aria-label="1. Do we need HTML to learn LWC?"><span class="zpaccordion-name">1. Do we need HTML to learn LWC?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_X8MB5lkAUEcGoYBtGrpljg" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_u5Cj1v0VUadpxrxv948nyw" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_7ezNrxV4FkYz7RGU1G0BtQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_hae4_dzBKBBmMQbSfRCyug" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p><strong style="color:rgb(0, 0, 0);"></strong></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p><span style="color:rgb(0, 0, 0);"><span></span></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"><span></span></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);">Yes, HTML is mandatory because LWC uses HTML templates for UI creation.</span></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div>
</div></div></div></div></div><div data-element-id="elm_2U5i1G2PT4th-0HwQ_qYMg" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="2. Are HTML tags the same in LWC?" data-content-id="elm_HWiLrHq626LLO7HEwZZO0A" style="margin-top:0;" tabindex="0" role="button" aria-label="2. Are HTML tags the same in LWC?"><span class="zpaccordion-name">2. Are HTML tags the same in LWC?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_HWiLrHq626LLO7HEwZZO0A" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_EsUHLPDiEOSRoxW1Va1vSQ" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_e_hMh4qQPANv9Gq71QOCbQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_yDDgYpCDh88L_B4yVqVDpw" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><div><span style="color:rgb(0, 0, 0);"><div><p><span></span></p><div><p></p><div><p></p><div><p></p><div><p></p><div><p></p><div><div><p></p><div><p>Yes, LWC uses standard HTML tags along with special directives like&nbsp;<code>if:true</code>&nbsp;and&nbsp;<code>for:each</code>.</p></div><p></p></div></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div></div></span><p></p></div></div></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div></div></div></div></div></div></div>
</div></div></div></div></div><div data-element-id="elm_z819rp9QtsimO7OBe5fUQQ" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="3. Can we use inline JavaScript in LWC HTML?" data-content-id="elm_G0J2WJbaranPy8N5RGud_Q" style="margin-top:0;" tabindex="0" role="button" aria-label="3. Can we use inline JavaScript in LWC HTML?"><span class="zpaccordion-name">3. Can we use inline JavaScript in LWC HTML?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_G0J2WJbaranPy8N5RGud_Q" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_NLdjpQsYYYsfKNQ4rWhxJg" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_mCo9PctebWjYnQx_burGTQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_PUMBoTZ3jG3CqnmnOda7FA" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);">No. Inline JS is not allowed for security reasons.</span></p></div><p></p></div><p></p></div><code></code><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div>
</div></div></div></div></div><div data-element-id="elm_MrzO9Mu2yvjD1yOveoN1ag" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="4. What is the most important HTML concept for LWC?" data-content-id="elm_VCfqx-I0okQtrLLtQgg6uQ" style="margin-top:0;" tabindex="0" role="button" aria-label="4. What is the most important HTML concept for LWC?"><span class="zpaccordion-name">4. What is the most important HTML concept for LWC?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_VCfqx-I0okQtrLLtQgg6uQ" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_83IdZWSoCFzucCnLahu5cw" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_lHAb9U1G1dgp1V6c444ATQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_Q-zMCoK5NRejxdtEjZeb0g" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p style="color:rgb(0, 0, 0);"></p><div><p style="color:rgb(0, 0, 0);"></p><div><p style="color:rgb(0, 0, 0);"></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);">Understanding structure, attributes, forms, and semantic HTML is crucial.</span></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p style="color:rgb(0, 0, 0);"></p></div><p style="color:rgb(0, 0, 0);"></p></div><p style="color:rgb(0, 0, 0);"></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div>
</div></div></div></div></div><div data-element-id="elm_tbTU4vUzVyHxec4fh5treA" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="5. Is HTML enough to build complete LWC apps?" data-content-id="elm_ytAT6ZF-UgNskNSKR7FuZQ" style="margin-top:0;" tabindex="0" role="button" aria-label="5. Is HTML enough to build complete LWC apps?"><span class="zpaccordion-name">5. Is HTML enough to build complete LWC apps?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_ytAT6ZF-UgNskNSKR7FuZQ" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_I_fDz0ybSUu9nfzEuPrMMg" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_LJZ6EEKHjUSNa8ZMVwDadw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_zjpsXejtTlBuGOWTiUljMA" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><div><span style="color:rgb(0, 0, 0);"><div><p></p><div><div><div><p></p><div>No, you also need JavaScript, Apex, and CSS to build full LWC applications.</div><p></p></div></div></div><p></p></div></span></div></div>
</div></div></div></div></div></div></div><div data-element-id="elm_8m4TfeROM6fQN9AHueEupg" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p><span style="font-family:Poppins, sans-serif;font-size:40px;font-weight:600;color:rgb(0, 0, 0);">Conclusion</span></p><div><div><span style="color:rgb(0, 0, 0);"><strong></strong></span></div><div><p></p></div>
</div><div><p></p><div><section><p></p></section></div></div><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p><div><p></p><div><p></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p><div><p></p><div><p></p><div><p></p><div><p></p></div></div></div></div></div></div></div></div></div><div><p></p><div><p></p><div><div><p></p><div><span style="color:rgb(0, 0, 0);">HTML is the backbone of web development and the starting point for building UI in Lightning Web Components. Understanding HTML makes learning LWC faster, easier, and more enjoyable. With these basics, you're ready to build real LWC components with confidence.</span></div><p></p></div><div><span style="color:rgb(0, 0, 0);"><br/></span></div></div></div></div>
</div></div></div><p></p><div><div><h2></h2></div><div><div><h2><span style="color:rgb(0, 0, 0);">More SFDC Resources</span></h2></div><span style="color:rgb(0, 0, 0);"><br/></span><div><span style="font-style:italic;color:rgb(0, 0, 0);"><p>Start your SFMC journey today — join our&nbsp;<strong><a href="https://www.peoplewoo.com/" target="_blank" rel="">Live Training</a></strong>&nbsp;</p><p>Need help? Chat with us on&nbsp;<strong><a href="https://wa.me/%2B917875494672" rel="">WhatsApp</a></strong>&nbsp;anytime.</p><p>Learn. Practice. Get Certified. Succeed with&nbsp;<strong><a href="https://www.youtube.com/%40peoplewoo" target="_blank" rel="">Peoplewoo Skills</a></strong><a href="https://www.youtube.com/redirect?event=video_description&amp;redir_token=QUFFLUhqbUhyQUhpemJaOGZXR1RFRmxub3lNZlR4QW43QXxBQ3Jtc0ttMFhRMWtISFBVdlhJYlNab3NZS0hRd0RrQ0hwaTNGVEVhX2hVWUo3TktGN3VGa2FIWWtsQ1QtM0wxWG1ud0ZEeG02OG1CU3ZvVkE3ekNUUjZoaWFxZmhsUHNMR2diOEl5Wm5ROEpiUTVJSkJfQjF1MA&amp;q=https%3A%2F%2Fchat.whatsapp.com%2FKGLPRc9tofo0oiyd9oQW4E&amp;v=d_fgnADOmiQ" target="_blank" rel="">.</a></p></span></div></div><div><span style="font-style:italic;color:rgb(0, 0, 0);"><p><a href="https://www.youtube.com/%40peoplewoo" rel=""></a></p></span></div>
</div><p></p></div><p></p></div></div></div><div data-element-id="elm_KnMYXjQPWbIKC85JEm98qw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-4 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div class="zpelement zpelem-newsletter " data-list-id="" data-integ-type="" data-element-id="elm_eV_tPTfOVvRvGG8gHurC3Q" data-element-type="newsletter"><style type="text/css"></style><div class="zpnewsletter-container zpnewsletter-style-01 "><h2 class="zpheading zpheading-align-center zpnewsletter-heading" data-editor="true">Subscribe to our newsletter</h2><p class="zptext zptext-align-center zpnewsletter-desc" data-editor="true"> Stay informed about our latest updates through email. Subscribe here.</p><form class="zpform-container zpnewsletter-input-container"><label for="Email_elm_eV_tPTfOVvRvGG8gHurC3Q" class="zs-visually-hidden">Email</label><input type="text" id="Email_elm_eV_tPTfOVvRvGG8gHurC3Q" name="email" placeholder="Email" class="zpnewsletter-email-input-field"/><button type="submit" class="zpbutton zpnewsletter-button zpbutton-type-primary zpbutton-size-md">Subscribe</button></form></div>
</div><div data-element-id="elm_3-a_z2EN2Rdvo4WVGz-Y1Q" itemscope="" data-element-type="socialprofile" class="zpelement zpelem-socialprofile" data-element-id="elm_3-a_z2EN2Rdvo4WVGz-Y1Q"><style type="text/css"></style><div data-socialprofile_container class="zpsocialprofile-container zpsocialprofile-size-md zpsocialprofile-halign-center zpsocialprofile-align-mobile-center zpsocialprofile-align-tablet-center zpsocialprofile-style-none zpsocialprofile-type-color "><a href="https://www.linkedin.com/company/peoplewoo" class="zpsocialprofile-wrapper zpsocialprofile-linkedin" target="_blank" aria-label="LinkedIn"><svg aria-hidden="true" class="zpsocialprofile" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><path d="M64 4.706v54.588A4.706 4.706 0 0 1 59.294 64H4.706A4.706 4.706 0 0 1 0 59.294V4.706A4.706 4.706 0 0 1 4.706 0h54.588A4.706 4.706 0 0 1 64 4.706zM18.824 24.47H9.412v30.117h9.412V24.471zm.847-10.353a5.421 5.421 0 0 0-5.384-5.46h-.17a5.459 5.459 0 0 0 0 10.918 5.421 5.421 0 0 0 5.554-5.289v-.17zm34.917 22.174c0-9.054-5.76-12.574-11.482-12.574a10.73 10.73 0 0 0-9.525 4.856h-.263v-4.103H24.47v30.117h9.411V38.57a6.25 6.25 0 0 1 5.647-6.738h.358c2.993 0 5.214 1.882 5.214 6.625v16.132h9.412l.075-18.296z"/></svg></a><a href="https://www.youtube.com/@peoplewoo" class="zpsocialprofile-wrapper zpsocialprofile-youtube" target="_blank" aria-label="YouTube"><svg aria-hidden="true" class="zpsocialprofile" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><path d="M32.786 10l.106.001.392.002c1.94.009 6.896.05 11.873.237l.765.03c4.589.187 9.063.504 11.068 1.04 2.71.73 4.84 2.86 5.56 5.56 1.204 4.505 1.301 13.515 1.31 14.939v.382c-.009 1.424-.106 10.434-1.31 14.939a7.885 7.885 0 0 1-5.56 5.56c-4.455 1.19-21.107 1.3-24.098 1.309h-.923c-2.99-.01-19.635-.118-24.099-1.309a7.885 7.885 0 0 1-5.56-5.56c-.401-1.502-.68-3.504-.873-5.559l-.058-.65c-.314-3.688-.368-7.394-.377-8.552L1 32.124v-.194-.054l.002-.245c.009-1.158.063-4.864.377-8.552l.058-.65c.193-2.055.472-4.057.873-5.559a7.885 7.885 0 0 1 5.56-5.56c4.296-1.146 19.878-1.29 23.706-1.307L31.97 10h.105zM26.15 22.57v18.86L42.48 32l-16.33-9.43z"/></svg></a><a href="https://www.instagram.com/peoplewoo_consulting/" class="zpsocialprofile-wrapper zpsocialprofile-instagram" target="_blank" aria-label="Instagram"><svg aria-hidden="true" class="zpsocialprofile" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient x1="72.5875139%" y1="0%" x2="28.281045%" y2="106.524963%" id="linearGradient-1"><stop stop-color="#9A1DF1" offset="0%"></stop><stop stop-color="#ED1E64" offset="49.3618943%"></stop><stop stop-color="#FFD002" offset="100%"></stop></linearGradient><path d="M18.7470755,0.221595251 C15.3422244,0.382299247 13.0166948,0.927668835 10.9845413,1.72394402 C8.8808805,2.5440464 7.09761014,3.64310557 5.32364538,5.42434073 C3.54758782,7.20661909 2.45687425,8.99304465 1.64301187,11.0988238 C0.855031083,13.1361614 0.321066295,15.4627981 0.170711099,18.8697484 C0.0214311023,22.2829708 -0.012802497,23.3716107 0.00383750267,32.0611721 C0.0204135023,40.7496967 0.0587623014,41.8403975 0.221527098,45.254631 C0.384285494,48.6585158 0.927619882,50.9830597 1.72388866,53.0162565 C2.54502785,55.1199428 3.64296062,56.9022276 5.42521338,58.6772547 C7.20645494,60.4522883 8.9939045,61.5419779 11.1006629,62.3569282 C13.1359204,63.1438722 15.46353,63.6799042 18.8694627,63.8291842 C22.2826082,63.9795458 23.3722466,64.0127042 32.0596384,63.9961282 C40.7511454,63.9795458 41.8408478,63.941165 45.2539933,63.7794178 C48.6588444,63.616653 50.9822875,63.0712898 53.0165275,62.2770946 C55.1201883,61.4538563 56.9034586,60.3579395 58.6774234,58.5756547 C60.4513945,56.7943876 61.5421081,55.0069188 62.3560345,52.9001285 C63.1440153,50.8648453 63.6800089,48.5372038 63.8282777,45.1333446 C63.9775577,41.7180679 64.0128665,40.6273351 63.9962265,31.9388169 C63.9796441,23.2492555 63.9402841,22.1606092 63.7785369,18.7484684 C63.6167897,15.3414861 63.0714329,13.0179854 62.2761753,10.9837454 C61.4540249,8.88005905 60.3571033,7.0987919 58.5758618,5.32274074 C56.7946202,3.54875038 55.0071771,2.4559312 52.9004123,1.64411682 C50.8641371,0.856129637 48.5375324,0.319048049 45.1316061,0.171822452 C41.7184606,0.0204496555 40.6288222,-0.0127087437 31.9383264,0.00387365592 C23.2499298,0.0204560555 22.160285,0.0577936547 18.7470755,0.221595251 M19.1203747,58.0696835 C16.0006051,57.9338499 14.3064996,57.4154436 13.1774308,56.9810372 C11.682346,56.4024772 10.6154853,55.7088452 9.49261809,54.5942852 C8.37184371,53.4755524 7.67612533,52.4117765 7.09241974,50.9198021 C6.65381495,49.7906885 6.12611576,48.0986182 5.97993337,44.9788358 C5.82129017,41.6060871 5.78502777,40.5941383 5.76945657,32.0497481 C5.75287417,23.5074443 5.78394617,22.4954955 5.93120377,19.1196428 C6.06491897,16.0019213 6.58648055,14.3057037 7.01983094,13.1776334 C7.59834613,11.6804686 8.28988531,10.6156558 9.40655089,9.49280784 C10.5252389,8.36992787 11.5889956,7.67628948 13.081994,7.0925775 C14.2100452,6.65191191 15.9021283,6.12831512 19.0208227,5.98007832 C22.3956194,5.82038552 23.4064738,5.78618392 31.9486944,5.76960153 C40.4929438,5.75298713 41.5048734,5.78307992 44.8807453,5.93134872 C47.9983644,6.06715032 49.6945564,6.58350231 50.8216028,7.0199951 C52.3176987,7.59852308 53.3845595,8.28801427 54.5064091,9.40674704 C55.628201,10.5254798 56.323913,11.5871694 56.9076186,13.0832846 C57.3482458,14.2082189 57.8718362,15.9023821 58.0190938,19.0201036 C58.1797594,22.3949387 58.2160858,23.4068555 58.231593,31.9491913 C58.2481754,40.4935879 58.2171034,41.5054983 58.0688346,44.8792902 C57.933033,47.9990726 57.4156442,49.6942725 56.9802074,50.8243973 C56.4016858,52.3184581 55.710089,53.3853316 54.5924123,54.5082116 C53.4747995,55.6269444 52.4110427,56.3246916 50.9169691,56.9084356 C49.7910044,57.348026 48.0968988,57.8726723 44.9802333,58.0209411 C41.6055006,58.1795587 40.5945822,58.2158467 32.0492576,58.2314179 C23.507037,58.2480131 22.4961826,58.2158659 19.1203747,58.0696835 M45.2073489,14.8946189 C45.2114717,17.0138765 46.9346204,18.729806 49.053846,18.7256663 C51.1740891,18.7215116 52.8900251,16.9993549 52.8869253,14.8800973 C52.8827483,12.7608398 51.1595931,11.043899 49.03935,11.0480387 C46.9191132,11.052187 45.2031773,12.7753614 45.2073489,14.8946189 M15.5693094,32.0310857 C15.5869347,41.1063495 22.957565,48.4469894 32.0305952,48.4293954 C41.1046942,48.4117446 48.4493852,41.0430983 48.4318231,31.9678665 C48.414134,22.8957323 41.0424926,15.5509133 31.967376,15.5685072 C22.8942818,15.5861645 15.5516836,22.9579403 15.5693094,32.0310857 M21.3328633,32.0196937 C21.3225058,26.1295435 26.0897377,21.344654 31.978768,21.3342528 C37.868867,21.3228812 42.6547101,26.0880651 42.6661227,31.9792585 C42.6775581,37.870452 37.9103198,42.6542983 32.0192032,42.6657427 C26.1301793,42.6771143 21.3442722,37.9108872 21.3328633,32.0196937" id="path-2"></path></defs><g stroke="none" stroke-width="1" fill-rule="evenodd"><mask fill="white"><use xlink:href="#path-2"></use></mask><use class="cl-path-inherit" fill="url(#linearGradient-1)" xlink:href="#path-2"></use></g></svg></a><a href="https://wa.me/+917875494672" class="zpsocialprofile-wrapper zpsocialprofile-whatsapp" target="_blank" aria-label="WhatsApp"><svg aria-hidden="true" class="zpsocialprofile" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><defs><linearGradient x1="49.9999983%" y1="100%" x2="49.9999983%" y2="0.00237659529%" id="wtlinearGradient-1"><stop stop-color="#F9F9F9" offset="0%"></stop><stop stop-color="#FFFFFF" offset="100%"></stop></linearGradient></defs><g stroke="none" stroke-width="1" fill-rule="evenodd"><g fill-rule="nonzero"><path class="cl-path-transparent" d="M1.10771574,62.8926967 L5.4728797,47.0284478 C2.78074848,42.3847708 1.36440022,37.1174751 1.3659281,31.7224137 C1.37356752,14.8421228 15.1734138,1.1088243 32.1283401,1.1088243 C40.3575222,1.11186634 48.0825026,4.30144735 53.8884609,10.0874112 C59.6974751,15.873375 62.8938079,23.5651781 62.8907543,31.745229 C62.8831127,48.6255199 49.0832664,62.3603394 32.1283401,62.3603394 C32.1283401,62.3603394 32.1283401,62.3603394 32.1283401,62.3603394 L32.1145892,62.3603394 C26.9656208,62.3588184 21.9067976,61.0720346 17.4148193,58.633838 L1.10618786,62.8911757 L1.10771574,62.8926967 Z" fill="#25D266"></path><path class="cl-path-inherit" d="M32.1344517,0 C40.6585153,0.00304204197 48.6585147,3.30669962 54.6753211,9.30104333 C60.6905995,15.295387 64.0030515,23.264016 64,31.7376239 C63.9924328,49.0469187 49.9804471,63.1660029 32.660306,63.4466537 L32.1344517,63.4509114 L32.1344517,63.4509114 L32.1207007,63.4509114 C26.7883863,63.4493904 21.5477449,62.116976 16.893811,59.5905602 L0.00152788378,64 L0,64 L4.52100811,47.5668893 C1.73262021,42.7574209 0.265851778,37.3015186 0.267379662,31.7117665 C0.27501908,14.2261093 14.5683718,0 32.1344517,0 Z M32.143619,5.35703591 C17.5339943,5.35703591 5.65316999,17.179932 5.6470572,31.7132875 C5.64553057,36.6931103 7.04507211,41.5436462 9.69595047,45.7401431 L10.3269665,46.7379328 L7.65011409,56.464862 L17.6745596,53.8487059 L17.6760875,53.8487059 L18.6432379,54.4190888 C22.7089366,56.8207809 27.37051,58.0908335 32.1237565,58.0938755 L32.1344517,58.0938755 C46.7318533,58.0938755 58.6142055,46.2694584 58.6203176,31.7345818 C58.6218449,24.6907337 55.8701262,18.0682083 50.8693626,13.0868646 C45.868599,8.10552083 39.2192487,5.36007795 32.143619,5.35703591 Z M20.8510299,17.0688705 C21.3827335,17.0688705 21.9129092,17.0673765 22.3773858,17.0871497 C22.9457586,17.1099651 23.5737188,17.1358224 24.1695935,18.4560686 L24.1695935,18.4560686 C24.8785316,20.0242413 26.4262779,23.9439124 26.6249028,24.3408988 C26.8235276,24.7378853 26.9564535,25.2002757 26.6906018,25.729591 C26.42475,26.2589063 26.2918241,26.5889678 25.8945743,27.0513582 C25.4957966,27.5152696 25.057294,28.0856525 24.6997692,28.4400504 C24.2994636,28.8339948 23.8854071,29.2644438 24.3498838,30.0568957 C24.8143605,30.8508686 26.4125269,33.4457304 28.7792189,35.5462604 C31.8212355,38.2460727 34.3865524,39.0826342 35.1825798,39.4796207 C35.9786073,39.8766072 36.4430839,39.8096822 36.9075606,39.2803669 C37.3720373,38.7525727 38.8983932,36.966894 39.4285688,36.1744421 C39.9602724,35.3804691 40.4904481,35.512798 41.2207765,35.7774556 C41.9511049,36.0405922 45.8655432,37.9585997 46.6615706,38.3555862 C47.4575981,38.7525727 47.9893016,38.9503054 48.1879265,39.2803669 C48.3865514,39.6119495 48.3865514,41.1983744 47.7234499,43.0494569 C47.0588204,44.9005395 43.8090116,46.6846971 42.3483547,46.8170259 C42.2952399,46.8218379 42.2422464,46.8271688 42.189112,46.8328475 L42.0290247,46.850756 C40.6602396,47.0089406 39.0295689,47.2820712 32.7929696,44.8336146 C24.6997692,41.6562017 19.5905258,33.3970578 19.1917482,32.8692635 C18.7944984,32.3399482 15.9404115,28.5708582 15.9404115,24.6709604 C15.9404115,20.7710626 17.996943,18.8530551 18.7272715,18.0606032 C19.4575999,17.2681512 20.3193264,17.0688705 20.8510299,17.0688705 Z" fill="url(#wtlinearGradient-1)"></path></g></g></svg></a></div>
</div></div></div></div></div></div> ]]></content:encoded><pubDate>Fri, 28 Nov 2025 12:34:43 +0530</pubDate></item><item><title><![CDATA[Events in JavaScript | Complete Beginner to Advanced Guide | Peoplewoo Skills]]></title><link>https://www.peoplewoo.com/blogs/post/events-in-javascript-complete-beginner-to-advanced-guide-peoplewoo-skills</link><description><![CDATA[ JavaScript is an&nbsp; event-driven language , which means almost everything in the browser happens because of an event — a click, a key press, page lo ]]></description><content:encoded><![CDATA[<div class="zpcontent-container blogpost-container "><div data-element-id="elm_VSFK6u_qTROrUlbkwFcnHQ" data-element-type="section" class="zpsection "><style type="text/css"></style><div class="zpcontainer-fluid zpcontainer"><div data-element-id="elm_AX1H_FWwTISZjTAoLhORpg" data-element-type="row" class="zprow zprow-container zpalign-items- zpjustify-content- " data-equal-column=""><style type="text/css"></style><div data-element-id="elm_QmO3R2StSMOPjvWG4mBR2w" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-8 zpcol-sm-12 zpalign-self- "><style type="text/css"></style><div data-element-id="elm_zt8AQ9V5TPuN5ANXWKA81A" data-element-type="image" class="zpelement zpelem-image "><style> @media (min-width: 992px) { [data-element-id="elm_zt8AQ9V5TPuN5ANXWKA81A"] .zpimage-container figure img { width: 730px ; height: 677.66px ; } } </style><div data-caption-color="" data-size-tablet="" data-size-mobile="" data-align="center" data-tablet-image-separate="false" data-mobile-image-separate="false" class="zpimage-container zpimage-align-center zpimage-tablet-align-center zpimage-mobile-align-center zpimage-size-fit zpimage-tablet-fallback-fit zpimage-mobile-fallback-fit hb-lightbox " data-lightbox-options="
                type:fullscreen,
                theme:dark"><figure role="none" class="zpimage-data-ref"><span class="zpimage-anchor" role="link" tabindex="0" aria-label="Open Lightbox" style="cursor:pointer;"><picture><img class="zpimage zpimage-style-none zpimage-space-none " src="/Group%20300.png" size="fit" data-lightbox="true"/></picture></span></figure></div>
</div><div data-element-id="elm_pfjc3-aGJQ56E4Rt5J6YrA" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><section><p><span style="color:rgb(0, 0, 0);"></span></p></section><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p></div>
<div><p></p><div><header><p></p><div><section><p><span style="color:rgb(0, 0, 0);"></span></p></section><div><p></p><div><section><p><span style="color:rgb(0, 0, 0);"></span></p></section><div><section><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);">JavaScript is an&nbsp;<strong>event-driven language</strong>, which means almost everything in the browser happens because of an event — a click, a key press, page load, API response, timer, or even a custom action triggered inside a component.<br/><br/>Understanding events deeply is essential for building interactive UIs, especially in&nbsp;<strong>Lightning Web Components (LWC)</strong>, React, and modern frameworks. This guide takes you from beginner concepts to advanced patterns used in real-world applications.<br/></span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p></div></div></div></div></div></section></div></div></div></div></header></div><p></p><p></p><div><h2><span style="color:rgb(0, 0, 0);">Watch Our Video Tutorial</span></h2></div>
<p></p></div><section><div><h2><span style="color:rgb(0, 0, 0);"></span></h2></div>
<p></p></section></div><p></p></div></div><div data-element-id="elm_ExDr8PnOub29FCL-R7q33w" data-element-type="video" class="zpelement zpelem-video "><style type="text/css"> @media (max-width: 767px) { [data-element-id="elm_ExDr8PnOub29FCL-R7q33w"].zpelem-video iframe.zpvideo{ width:560px !important; height:315px !important; } } @media all and (min-width: 768px) and (max-width:991px){ [data-element-id="elm_ExDr8PnOub29FCL-R7q33w"].zpelem-video iframe.zpvideo{ width:560px !important; height:315px !important; } } </style><div class="zpvideo-container zpiframe-align-left zpiframe-mobile-align-center zpiframe-tablet-align-center"><iframe class="zpvideo " width="2000" height="315" src="//www.youtube.com/embed/Trxza5sb5Nw?enablejsapi=1" frameborder="0" allowfullscreen id=youtube-video-1 data-api=youtube></iframe></div>
</div><div data-element-id="elm_QlHXRdluq-pxYjAQryfSiQ" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><h1></h1><h2><span style="color:rgb(0, 0, 0);">What Are Events in JavaScript?</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);"> An <strong>event</strong> is an action or occurrence recognized by the browser, such as: </span></p><ul><li><span style="color:rgb(0, 0, 0);">User actions (click, input, keypress)</span></li><li><span style="color:rgb(0, 0, 0);">Browser actions (load, scroll, resize)</span></li><li><span style="color:rgb(0, 0, 0);">Programmatic actions (CustomEvent dispatch)</span></li></ul><p><span style="color:rgb(0, 0, 0);"> Events allow JavaScript to “react” to what is happening on the web page. </span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h2><span style="color:rgb(0, 0, 0);">Why Events Are Important?</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><ul><li><span style="color:rgb(0, 0, 0);">They make web pages interactive</span></li><li><span style="color:rgb(0, 0, 0);">Help capture user actions</span></li><li><span style="color:rgb(0, 0, 0);">Drive component communication (like LWC)</span></li><li><span style="color:rgb(0, 0, 0);">Trigger business logic</span></li><li><span style="color:rgb(0, 0, 0);">Control UI updates efficiently</span></li></ul><div><span style="color:rgb(0, 0, 0);"><br/></span></div><h2><span style="color:rgb(0, 0, 0);">Types of Events in JavaScript</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><h3><span style="color:rgb(0, 0, 0);">1. Mouse Events</span></h3><ul><li><span style="color:rgb(0, 0, 0);">click</span></li><li><span style="color:rgb(0, 0, 0);">dblclick</span></li><li><span style="color:rgb(0, 0, 0);">mousedown</span></li><li><span style="color:rgb(0, 0, 0);">mouseup</span></li><li><span style="color:rgb(0, 0, 0);">mousemove</span></li><li><span style="color:rgb(0, 0, 0);">mouseenter / mouseleave</span></li></ul><pre><code style="color:rgb(0, 0, 0);"> button.addEventListener(&quot;click&quot;, () =&gt;</code></pre><pre><code style="color:rgb(0, 0, 0);"> {     console.log(&quot;Button clicked!&quot;); });</code></pre><pre><code style="color:rgb(0, 0, 0);"> </code></pre><h3><span style="color:rgb(0, 0, 0);">2. Keyboard Events</span></h3><ul><li><span style="color:rgb(0, 0, 0);">keydown</span></li><li><span style="color:rgb(0, 0, 0);">keypress</span></li><li><span style="color:rgb(0, 0, 0);">keyup</span></li></ul><pre><code style="color:rgb(0, 0, 0);"> document.addEventListener(&quot;keydown&quot;, (event) =&gt; </code></pre><pre><code style="color:rgb(0, 0, 0);">{     console.log(&quot;Key pressed:&quot;, event.key); }); </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h3><span style="color:rgb(0, 0, 0);">3. Input &amp; Form Events</span></h3><ul><li><span style="color:rgb(0, 0, 0);">input</span></li><li><span style="color:rgb(0, 0, 0);">change</span></li><li><span style="color:rgb(0, 0, 0);">submit</span></li><li><span style="color:rgb(0, 0, 0);">focus / blur</span></li></ul><div><span style="color:rgb(0, 0, 0);"><br/></span></div><h3><span style="color:rgb(0, 0, 0);">4. Clipboard Events</span></h3><ul><li><span style="color:rgb(0, 0, 0);">copy</span></li><li><span style="color:rgb(0, 0, 0);">cut</span></li><li><span style="color:rgb(0, 0, 0);">paste</span></li></ul><div><span style="color:rgb(0, 0, 0);"><br/></span></div><h3><span style="color:rgb(0, 0, 0);">5. Window Events</span></h3><ul><li><span style="color:rgb(0, 0, 0);">load</span></li><li><span style="color:rgb(0, 0, 0);">resize</span></li><li><span style="color:rgb(0, 0, 0);">scroll</span></li><li><span style="color:rgb(0, 0, 0);">beforeunload</span></li></ul><div><span style="color:rgb(0, 0, 0);"><br/></span></div><h3><span style="color:rgb(0, 0, 0);">6. Touch Events (Mobile)</span></h3><ul><li><span style="color:rgb(0, 0, 0);">touchstart</span></li><li><span style="color:rgb(0, 0, 0);">touchmove</span></li><li><span style="color:rgb(0, 0, 0);">touchend</span></li></ul><div><span style="color:rgb(0, 0, 0);"><br/></span></div><h3><span style="color:rgb(0, 0, 0);">7. Custom Events</span></h3><p><span style="color:rgb(0, 0, 0);">Manually created events using <code>CustomEvent</code> (commonly used in LWC).</span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h2><span style="color:rgb(0, 0, 0);">The Event Listener</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><h3><span style="color:rgb(0, 0, 0);">Syntax</span></h3><pre><code style="color:rgb(0, 0, 0);"> element.addEventListener(&quot;eventName&quot;, callbackFunction); </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h3><span style="color:rgb(0, 0, 0);">Example</span></h3><pre><code style="color:rgb(0, 0, 0);"> document.querySelector(&quot;#btn&quot;).addEventListener(&quot;click&quot;, handleClick);</code></pre><pre><code style="color:rgb(0, 0, 0);"> function handleClick() {     console.log(&quot;Clicked!&quot;); } </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h2><span style="color:rgb(0, 0, 0);">Removing Event Listeners</span></h2><pre><code style="color:rgb(0, 0, 0);"> function hello() {     console.log(&quot;Hello!&quot;); } </code></pre><pre><code style="color:rgb(0, 0, 0);">button.addEventListener(&quot;mouseover&quot;, hello); </code></pre><pre><code style="color:rgb(0, 0, 0);">button.removeEventListener(&quot;mouseover&quot;, hello); </code></pre><p><span style="color:rgb(0, 0, 0);"><strong>Important:</strong> removeEventListener only works if you pass the same function reference.</span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h2><span style="color:rgb(0, 0, 0);">Event Listener Options</span></h2><table border="1" cellpadding="8" cellspacing="0"><tbody><tr><th><span style="color:rgb(0, 0, 0);">Option</span></th><th><span style="color:rgb(0, 0, 0);">Description</span></th></tr><tr><td><span style="color:rgb(0, 0, 0);">once</span></td><td><span style="color:rgb(0, 0, 0);">Runs handler only once</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">capture</span></td><td><span style="color:rgb(0, 0, 0);">Runs during capture phase</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">passive</span></td><td><span style="color:rgb(0, 0, 0);">Improves scroll performance</span></td></tr></tbody></table><pre><code style="color:rgb(0, 0, 0);"> window.addEventListener(&quot;scroll&quot;, logScroll,</code></pre><pre><code style="color:rgb(0, 0, 0);"> {     passive: true,     once: false,     capture: false }); </code></pre><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h2><span style="color:rgb(0, 0, 0);">The Event Object</span></h2><p><span style="color:rgb(0, 0, 0);"> Every event automatically receives an <code>event</code> object with powerful properties. </span></p><pre><code style="color:rgb(0, 0, 0);"> document.addEventListener(&quot;click&quot;, (event) =&gt;</code></pre><pre><code style="color:rgb(0, 0, 0);"> {     console.log(event.target);     console.log(event.type); });</code></pre><pre><code style="color:rgb(0, 0, 0);"> </code></pre><h3><span style="color:rgb(0, 0, 0);">Common Properties</span></h3><ul><li><span style="color:rgb(0, 0, 0);"><strong>event.target</strong> → element on which event occurred</span></li><li><span style="color:rgb(0, 0, 0);"><strong>event.currentTarget</strong> → element with the listener</span></li><li><span style="color:rgb(0, 0, 0);"><strong>event.preventDefault()</strong> → stop default action</span></li><li><span style="color:rgb(0, 0, 0);"><strong>event.stopPropagation()</strong> → stop bubbling</span></li><li><span style="color:rgb(0, 0, 0);"><strong>event.key</strong> (keyboard)</span></li><li><span style="color:rgb(0, 0, 0);"><strong>event.which</strong> (mouse buttons)</span></li></ul><div><span style="color:rgb(0, 0, 0);"><br/></span></div><h2><span style="color:rgb(0, 0, 0);">Event Propagation</span></h2><p><span style="color:rgb(0, 0, 0);"> When an event occurs, it moves through three phases: </span></p><pre><span style="color:rgb(0, 0, 0);">     CAPTURING → TARGET → BUBBLING </span></pre><pre><span style="color:rgb(0, 0, 0);"><br/></span></pre><h3><span style="color:rgb(0, 0, 0);">1. Capturing Phase</span></h3><p><span style="color:rgb(0, 0, 0);"> &nbsp;Event moves from <strong>top → down</strong> (window → element). </span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h3><span style="color:rgb(0, 0, 0);">2. Target Phase</span></h3><p><span style="color:rgb(0, 0, 0);"> Event reaches the actual element. </span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h3><span style="color:rgb(0, 0, 0);">3. Bubbling Phase</span></h3><p><span style="color:rgb(0, 0, 0);"> Event moves from <strong>down → top</strong> (element → window). </span></p><p><span style="color:rgb(0, 0, 0);">Most events bubble by default.</span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><pre><code style="color:rgb(0, 0, 0);"> parent.addEventListener(&quot;click&quot;, () =&gt; console.log(&quot;Parent&quot;), true); </code></pre><pre><code style="color:rgb(0, 0, 0);">// capturing child.addEventListener(&quot;click&quot;, () =&gt; console.log(&quot;Child&quot;)); </code></pre><pre><code style="color:rgb(0, 0, 0);">// bubbling </code></pre><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h2><span style="color:rgb(0, 0, 0);">stopPropagation() vs stopImmediatePropagation()</span></h2><pre><code style="color:rgb(0, 0, 0);"> event.stopPropagation();  // stops bubbling or capturing beyond this element </code></pre><pre><code style="color:rgb(0, 0, 0);"> event.stopImmediatePropagation(); // stops all other listeners on same element too </code></pre><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h2><span style="color:rgb(0, 0, 0);">Event Delegation</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);"> Event delegation is a technique where you attach one event listener to a parent instead of each child element. </span></p><h3><span style="color:rgb(0, 0, 0);">Diagram</span></h3><pre><span style="color:rgb(0, 0, 0);"> Parent  ┗━ Child 1  ┗━ Child 2  ┗━ Child 3 </span></pre><pre><span style="color:rgb(0, 0, 0);"><br/></span></pre><h3><span style="color:rgb(0, 0, 0);">Example: Todo list click handler</span></h3><div><span style="color:rgb(0, 0, 0);"><br/></span></div><pre><code style="color:rgb(0, 0, 0);"> document.querySelector(&quot;#list&quot;).addEventListener(&quot;click&quot;, (event) =&gt;</code></pre><pre><code style="color:rgb(0, 0, 0);"> { if(event.target.tagName === &quot;LI&quot;) { console.log(&quot;Item clicked:&quot;,</code></pre><pre><code style="color:rgb(0, 0, 0);"> event.target.textContent); } }); </code></pre><p><span style="color:rgb(0, 0, 0);">This is used heavily in dynamic UIs (including LWC DOM rendering).</span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h2><span style="color:rgb(0, 0, 0);">Advanced JavaScript Event</span></h2><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h2><span style="color:rgb(0, 0, 0);">Concepts</span></h2><h3><span style="color:rgb(0, 0, 0);">Event Loop</span></h3><p><span style="color:rgb(0, 0, 0);">The event loop manages:</span></p><ul><li><span style="color:rgb(0, 0, 0);">Call stack</span></li><li><span style="color:rgb(0, 0, 0);">Microtask queue</span></li><li><span style="color:rgb(0, 0, 0);">Macrotask queue</span></li></ul><div><span style="color:rgb(0, 0, 0);"><br/></span></div><h3><span style="color:rgb(0, 0, 0);">Example</span></h3><pre><code style="color:rgb(0, 0, 0);"> console.log(&quot;Start&quot;); setTimeout(() =&gt; console.log(&quot;Timeout&quot;), </code></pre><pre><code style="color:rgb(0, 0, 0);">0); Promise.resolve().then(() =&gt; console.log(&quot;Promise&quot;)); console.log(&quot;End&quot;); </code></pre><p><span style="color:rgb(0, 0, 0);">Execution order:</span></p><pre><span style="color:rgb(0, 0, 0);"> Start End Promise Timeout </span></pre><pre><span style="color:rgb(0, 0, 0);"><br/></span></pre><h2><span style="color:rgb(0, 0, 0);">Debouncing (Improving Performance)</span></h2><p><span style="color:rgb(0, 0, 0);">Used when user types — prevents too many function calls.</span></p><pre><code style="color:rgb(0, 0, 0);"> function debounce(fn, delay) {     let timer;     </code></pre><pre><code style="color:rgb(0, 0, 0);">return function(...args) {         clearTimeout(timer);  </code></pre><pre><code style="color:rgb(0, 0, 0);">       timer = setTimeout(() =&gt; fn.apply(this, args), delay);  </code></pre><pre><code style="color:rgb(0, 0, 0);">   }; } const searchHandler = debounce(() =&gt; </code></pre><pre><code style="color:rgb(0, 0, 0);">{     console.log(&quot;Searching...&quot;); }, 500); </code></pre><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h2><span style="color:rgb(0, 0, 0);">Throttling</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);">Controls how often a function executes during continuous actions like scrolling.</span></p><pre><code style="color:rgb(0, 0, 0);"> function throttle(fn, limit) {     let waiting = false;  </code></pre><pre><code style="color:rgb(0, 0, 0);">   return function(...args) {         if (!waiting) </code></pre><pre><code style="color:rgb(0, 0, 0);">{             fn.apply(this, args);             waiting = true;  </code></pre><pre><code style="color:rgb(0, 0, 0);">           setTimeout(() =&gt; waiting = false, limit);         } </code></pre><pre><code style="color:rgb(0, 0, 0);">    }; } window.addEventListener(&quot;scroll&quot;, throttle(() =&gt; </code></pre><pre><code style="color:rgb(0, 0, 0);">{     console.log(&quot;Scrolling...&quot;); }, 300)); </code></pre><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h2><span style="color:rgb(0, 0, 0);">Custom Events in JavaScript</span></h2><pre><code style="color:rgb(0, 0, 0);"> const event = new CustomEvent(&quot;helloEvent&quot;, </code></pre><pre><code style="color:rgb(0, 0, 0);">{     detail: { message: &quot;Hello Peoplewoo!&quot; },   </code></pre><pre><code style="color:rgb(0, 0, 0);">  bubbles: true,     composed: true }); element.dispatchEvent(event); </code></pre><p><span style="color:rgb(0, 0, 0);"><br/></span></p><hr/><h2><span style="color:rgb(0, 0, 0);">Real-Life Project Examples</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);">1. Search Bar with Debouncing<br/>2. Modal Open/Close Events<br/>3. Form Validation on Input Events<br/>4. Infinite Scroll using Scroll Event<br/>5. Apex Call Triggered by Button Click in LWC</span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><hr/><h2><span style="color:rgb(0, 0, 0);">Interview Questions</span></h2><h3><span style="color:rgb(0, 0, 0);">Beginner</span></h3><ul><li><span style="color:rgb(0, 0, 0);">What is an event in JavaScript?</span></li><li><span style="color:rgb(0, 0, 0);">Difference between target and currentTarget?</span></li><li><span style="color:rgb(0, 0, 0);">What is event bubbling?</span></li></ul><h3><span style="color:rgb(0, 0, 0);">Intermediate</span></h3><ul><li><span style="color:rgb(0, 0, 0);">Explain event delegation with example.</span></li><li><span style="color:rgb(0, 0, 0);">What is the difference between preventDefault and stopPropagation?</span></li></ul><h3><span style="color:rgb(0, 0, 0);">Advanced (LWC + JS)</span></h3><ul><li><span style="color:rgb(0, 0, 0);">How does event propagation work inside Shadow DOM?</span></li><li><span style="color:rgb(0, 0, 0);">When should composed: true be used in LWC?</span></li><li><span style="color:rgb(0, 0, 0);">Explain microtask queue vs macrotask queue.</span></li></ul><h2><br/></h2></div>
</div><div class="zpelement zpelem-carousel " data-element-id="elm_byTBvaroUVlqNQzB3l0WEQ" data-element-type="carousel" data-currentslide-index="0" data-transition="slide_left" data-zs-autoslide="false" data-zs-slider="min-height-el: zpcarousel-content-container;arrow-cont: zpcarousel-arrows-container; active-controller: zpcarousel-controller-active; controller-cont: zpcarousel-controller-container; controller: zpcarousel-controller; right-arrow: zpcarousel-arrow-right; left-arrow: zpcarousel-arrow-left;active-slide:zpcarousel-content-active; slide: zpcarousel-content; slides-cont: zpcarousel-content-container;content-cont : zpcarousel-content-inner; background: false;slide-pause-btn:zpcarousel-pause-btn;slide-play-btn:zpcarousel-play-btn;"><div class="zpcarousel-container zpcarousel-style-01"><style></style><div class="zpcarousel-content-container"><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_-dxt0NaImCeUb0jHYGM2Ow" data-slide-name="Slide 1"><div class="zpcarousel-content-inner"><div data-element-id="elm_4Jy8AFUbkHw4IXVthKXcwg" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_eO9573nNV2JPmlpkVUhEdg" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_SiJIPTsI0iZNgc4tajDCvw" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Dharmesh R.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>The explanations are clear, and the repetition really helps to reinforce the concepts. It covers everything in detail, from the basics to more advanced topics. The course includes in-depth examples that make complex ideas easy to understand. Overall, I’m really impressed and can’t wait to explore more!</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_NZnF622zgu6xIrpJo386_g" data-slide-name="Slide 2"><div class="zpcarousel-content-inner"><div data-element-id="elm_hHh-tqVupL3HL8KYT1kf9Q" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm__dSB6W4LHkpHg36wJiyBsw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_GHUL9IsOVpazUCwTJjdzMw" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Jermaine L.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>Taking this course like help me acquire all the knowledge and skills I need to excel and optimize my performance to fulfilling my operational duties in my current role as an email marketing specialist</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_v3u8hhd_AsZxORmwnoA_2g" data-slide-name="Slide 3"><div class="zpcarousel-content-inner"><div data-element-id="elm_DD4MpNQtMS1HKlrokaUzeA" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_k40UvPeZYpsuUJLZc3IAZw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_t0XTYi6tHJ5BJkc4CqF21g" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Sumit N.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>Awesome explanation. He keep repeating which helps to remind/refresh the concepts. Loved it</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_hy7Rbr8nliB0X9rRDa5aow" data-slide-name="Slide 4"><div class="zpcarousel-content-inner"><div data-element-id="elm_QL8Q-Kw-ITIb4l-A8xb-mA" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_OAbkKPefCMhNQsVayTvj2w" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_NgbzA5biiFsJ40IvZ4dfyg" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Varun V.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>It's a great course that covers everything you need to know. After almost finishing, I feel confident using the SDC platform. Definitely a 5-star experience!</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_aJlL0IwMmDJL1pq3VxCvig" data-slide-name="Slide 5"><div class="zpcarousel-content-inner"><div data-element-id="elm_WVzZlT8_Ygn-L_HvDcrbhA" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_nz3RpOWIfz2pKHIP8PmbXw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_cdESQ-gJxvN41XpT7ZaAkg" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Prajakta Nimba S.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>This course is perfect for anyone looking to build a solid foundation in Salesforce Data Cloud. The content is well-structured, easy to follow, and packed with real-world examples that make the concepts practical</span></span></p></div>
</div></div></div></div></div></div></div><div class="zpcarousel-arrows-container zpcarousel-arrow-type-01" data-arrow-style="2"><div class="zpcarousel-arrow-left" tabindex="0" role="button" aria-label="Previous"><svg aria-hidden="true" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" class="svg-icon-18px"><path d="M0,16c0,0.3,0.1,0.5,0.3,0.7l9.9,10c0.4,0.4,1,0.4,1.4,0c0.4-0.4,0.4-1,0-1.4L3.4,17H31 c0.6,0,1-0.5,1-1s-0.4-1-1-1H3.4l8.2-8.3c0.4-0.4,0.4-1,0-1.4c-0.4-0.4-1-0.4-1.4,0l-9.9,10C0.1,15.5,0,15.7,0,16z"></path></svg></div>
<div class="zpcarousel-arrow-right" tabindex="0" role="button" aria-label="Next"><svg aria-hidden="true" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" class="svg-icon-18px"><path id="arrow-right-style2-Arrow_Forward" d="M32,16c0-0.3-0.1-0.5-0.3-0.7l-9.9-10c-0.4-0.4-1-0.4-1.4,0c-0.4,0.4-0.4,1,0,1.4 l8.2,8.3H1c-0.6,0-1,0.5-1,1s0.4,1,1,1h27.6l-8.2,8.3c-0.4,0.4-0.4,1,0,1.4c0.4,0.4,1,0.4,1.4,0l9.9-10C31.9,16.5,32,16.3,32,16z"></path></svg></div>
</div><div class="zpcarousel-controller-container zpcarousel-controller-type-01"><div class="zpcarousel-controller zpcarousel-controller-active" data-slide-index="0"></div>
<div class="zpcarousel-controller " data-slide-index="1"></div><div class="zpcarousel-controller " data-slide-index="2"></div>
<div class="zpcarousel-controller " data-slide-index="3"></div><div class="zpcarousel-controller " data-slide-index="4"></div>
</div></div></div><div data-element-id="elm_Vu-0h7FBeerqTMPmZaWlug" data-element-type="heading" class="zpelement zpelem-heading "><style></style><h2
 class="zpheading zpheading-style-none zpheading-align-left zpheading-align-mobile-left zpheading-align-tablet-left " data-editor="true"><span><span style="color:rgb(0, 0, 0);">Frequently Asked Questions (FAQ)</span><br/></span></h2></div>
<div data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA" data-element-type="accordion" class="zpelement zpelem-accordion " data-tabs-inactive="false" data-icon-style="1"><style> [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion, [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content{ border-style:solid; border-color: !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content.zpaccordion-active-content:last-of-type{ border-block-end-width:1px !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion.zpaccordion-active + .zpaccordion-content{ border-block-start-color: transparent !important; } @media all and (min-width: 768px) and (max-width:991px){ [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion, [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content{ border-style:solid; border-color: !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content:last-of-type{ border-block-end-width:1px !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion.zpaccordion-active + .zpaccordion-content{ border-block-start-color: transparent !important; } } @media all and (max-width:767px){ [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion, [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content{ border-style:solid; border-color: !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content:last-of-type{ border-block-end-width:1px !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion.zpaccordion-active + .zpaccordion-content{ border-block-start-color: transparent !important; } } </style><div class="zpaccordion-container zpaccordion-style-01 zpaccordion-with-icon zpaccord-svg-icon-1 zpaccordion-icon-align-left "><div data-element-id="elm_avqPnRbxn96EwANShYaFjg" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="1. What are JavaScript events?" data-content-id="elm_X8MB5lkAUEcGoYBtGrpljg" style="margin-top:0;" tabindex="0" role="button" aria-label="1. What are JavaScript events?"><span class="zpaccordion-name">1. What are JavaScript events?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_X8MB5lkAUEcGoYBtGrpljg" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_u5Cj1v0VUadpxrxv948nyw" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_7ezNrxV4FkYz7RGU1G0BtQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_hae4_dzBKBBmMQbSfRCyug" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p><strong style="color:rgb(0, 0, 0);"></strong></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><div><div><p><span style="color:rgb(0, 0, 0);"><span></span></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"><span></span></span></p><div><p></p><div><div><p><span style="color:rgb(0, 0, 0);">JavaScript events are actions or occurrences that happen in the browser, such as clicking a button, typing on the keyboard, submitting a form, or loading a page. Events allow developers to make web pages interactive.</span></p></div></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div></div></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div>
</div></div></div></div></div><div data-element-id="elm_2U5i1G2PT4th-0HwQ_qYMg" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="2. What is an event listener?" data-content-id="elm_HWiLrHq626LLO7HEwZZO0A" style="margin-top:0;" tabindex="0" role="button" aria-label="2. What is an event listener?"><span class="zpaccordion-name">2. What is an event listener?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_HWiLrHq626LLO7HEwZZO0A" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_EsUHLPDiEOSRoxW1Va1vSQ" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_e_hMh4qQPANv9Gq71QOCbQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_yDDgYpCDh88L_B4yVqVDpw" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><div><span style="color:rgb(0, 0, 0);"><div><p><span></span></p><div><p></p><div><p></p><div><p></p><div><p></p><div><p></p><div><div><p>An event listener is a function that waits for an event to happen and then runs specific JavaScript code. The most common method is&nbsp;<code>addEventListener()</code>.</p></div></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div></div></span><p></p></div></div></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div></div></div></div></div></div></div>
</div></div></div></div></div><div data-element-id="elm_z819rp9QtsimO7OBe5fUQQ" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="3. What is the difference between target and currentTarget?" data-content-id="elm_G0J2WJbaranPy8N5RGud_Q" style="margin-top:0;" tabindex="0" role="button" aria-label="3. What is the difference between target and currentTarget?"><span class="zpaccordion-name">3. What is the difference between target and currentTarget?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_G0J2WJbaranPy8N5RGud_Q" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_NLdjpQsYYYsfKNQ4rWhxJg" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_mCo9PctebWjYnQx_burGTQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_PUMBoTZ3jG3CqnmnOda7FA" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><div><p><strong>target</strong>&nbsp;is the element that triggered the event.&nbsp;<strong>currentTarget</strong>&nbsp;is the element currently processing the event inside the event listener. In event delegation, they are often different.</p></div></div><p></p></div><code></code><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div></div>
</div></div></div></div></div><div data-element-id="elm_MrzO9Mu2yvjD1yOveoN1ag" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="4. What is event bubbling?" data-content-id="elm_VCfqx-I0okQtrLLtQgg6uQ" style="margin-top:0;" tabindex="0" role="button" aria-label="4. What is event bubbling?"><span class="zpaccordion-name">4. What is event bubbling?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_VCfqx-I0okQtrLLtQgg6uQ" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_83IdZWSoCFzucCnLahu5cw" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_lHAb9U1G1dgp1V6c444ATQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_Q-zMCoK5NRejxdtEjZeb0g" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p style="color:rgb(0, 0, 0);"></p><div><p style="color:rgb(0, 0, 0);"></p><div><p style="color:rgb(0, 0, 0);"></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><div><p><span style="color:rgb(0, 0, 0);">Event bubbling means the event starts from the most specific element (child) and moves upward through its ancestors (parent elements) until it reaches the document.</span></p></div></div><p></p></div><p></p></div><p></p></div><p></p></div><p style="color:rgb(0, 0, 0);"></p></div><p style="color:rgb(0, 0, 0);"></p></div><p style="color:rgb(0, 0, 0);"></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div>
</div></div></div></div></div><div data-element-id="elm_tbTU4vUzVyHxec4fh5treA" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="5. What is event capturing?" data-content-id="elm_ytAT6ZF-UgNskNSKR7FuZQ" style="margin-top:0;" tabindex="0" role="button" aria-label="5. What is event capturing?"><span class="zpaccordion-name">5. What is event capturing?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_ytAT6ZF-UgNskNSKR7FuZQ" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_I_fDz0ybSUu9nfzEuPrMMg" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_LJZ6EEKHjUSNa8ZMVwDadw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_zjpsXejtTlBuGOWTiUljMA" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><div><span style="color:rgb(0, 0, 0);"><div><p></p><div><div><div><p>Event capturing is the reverse of bubbling. The event moves from the top (document) down through the parent elements until it reaches the target element.</p></div></div></div><p></p></div></span></div></div>
</div></div></div></div></div></div></div><div data-element-id="elm_8m4TfeROM6fQN9AHueEupg" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p><span style="font-family:Poppins, sans-serif;font-size:40px;font-weight:600;color:rgb(0, 0, 0);">Conclusion</span></p><div><div><span style="color:rgb(0, 0, 0);"><strong></strong></span></div><div><p></p></div>
</div><div><p></p><div><section><p></p></section></div></div><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p><div><p></p><div><p></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p><div><p></p><div><p></p><div><p></p><div><p></p></div></div></div></div></div></div></div></div></div><div><p></p><div><p></p><div><div><p><span style="color:rgb(0, 0, 0);"></span></p><span style="color:rgb(0, 0, 0);">JavaScript events are the foundation of all interactive web applications. From simple click handlers to complex event propagation, debouncing, custom events, and LWC communication — mastering events allows you to build fast, dynamic, and user-friendly experiences.</span><p><span style="color:rgb(0, 0, 0);"></span></p></div><div><span style="color:rgb(0, 0, 0);"><br/></span></div></div></div></div>
</div></div></div><p></p><div><div><h2></h2></div><div><div><h2><span style="color:rgb(0, 0, 0);">More SFDC Resources</span></h2></div><span style="color:rgb(0, 0, 0);"><br/></span><div><span style="font-style:italic;color:rgb(0, 0, 0);"><p>Start your SFMC journey today — join our&nbsp;<strong><a href="https://www.peoplewoo.com/" target="_blank" rel="">Live Training</a></strong>&nbsp;</p><p>Need help? Chat with us on&nbsp;<strong><a href="https://wa.me/%2B917875494672" rel="">WhatsApp</a></strong>&nbsp;anytime.</p><p>Learn. Practice. Get Certified. Succeed with&nbsp;<strong><a href="https://www.youtube.com/%40peoplewoo" target="_blank" rel="">Peoplewoo Skills</a></strong><a href="https://www.youtube.com/redirect?event=video_description&amp;redir_token=QUFFLUhqbUhyQUhpemJaOGZXR1RFRmxub3lNZlR4QW43QXxBQ3Jtc0ttMFhRMWtISFBVdlhJYlNab3NZS0hRd0RrQ0hwaTNGVEVhX2hVWUo3TktGN3VGa2FIWWtsQ1QtM0wxWG1ud0ZEeG02OG1CU3ZvVkE3ekNUUjZoaWFxZmhsUHNMR2diOEl5Wm5ROEpiUTVJSkJfQjF1MA&amp;q=https%3A%2F%2Fchat.whatsapp.com%2FKGLPRc9tofo0oiyd9oQW4E&amp;v=d_fgnADOmiQ" target="_blank" rel="">.</a></p></span></div></div><div><span style="font-style:italic;color:rgb(0, 0, 0);"><p><a href="https://www.youtube.com/%40peoplewoo" rel=""></a></p></span></div>
</div><p></p></div><p></p></div></div></div><div data-element-id="elm_KnMYXjQPWbIKC85JEm98qw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-4 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div class="zpelement zpelem-newsletter " data-list-id="" data-integ-type="" data-element-id="elm_eV_tPTfOVvRvGG8gHurC3Q" data-element-type="newsletter"><style type="text/css"></style><div class="zpnewsletter-container zpnewsletter-style-01 "><h2 class="zpheading zpheading-align-center zpnewsletter-heading" data-editor="true">Subscribe to our newsletter</h2><p class="zptext zptext-align-center zpnewsletter-desc" data-editor="true"> Stay informed about our latest updates through email. Subscribe here.</p><form class="zpform-container zpnewsletter-input-container"><label for="Email_elm_eV_tPTfOVvRvGG8gHurC3Q" class="zs-visually-hidden">Email</label><input type="text" id="Email_elm_eV_tPTfOVvRvGG8gHurC3Q" name="email" placeholder="Email" class="zpnewsletter-email-input-field"/><button type="submit" class="zpbutton zpnewsletter-button zpbutton-type-primary zpbutton-size-md">Subscribe</button></form></div>
</div><div data-element-id="elm_3-a_z2EN2Rdvo4WVGz-Y1Q" itemscope="" data-element-type="socialprofile" class="zpelement zpelem-socialprofile" data-element-id="elm_3-a_z2EN2Rdvo4WVGz-Y1Q"><style type="text/css"></style><div data-socialprofile_container class="zpsocialprofile-container zpsocialprofile-size-md zpsocialprofile-halign-center zpsocialprofile-align-mobile-center zpsocialprofile-align-tablet-center zpsocialprofile-style-none zpsocialprofile-type-color "><a href="https://www.linkedin.com/company/peoplewoo" class="zpsocialprofile-wrapper zpsocialprofile-linkedin" target="_blank" aria-label="LinkedIn"><svg aria-hidden="true" class="zpsocialprofile" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><path d="M64 4.706v54.588A4.706 4.706 0 0 1 59.294 64H4.706A4.706 4.706 0 0 1 0 59.294V4.706A4.706 4.706 0 0 1 4.706 0h54.588A4.706 4.706 0 0 1 64 4.706zM18.824 24.47H9.412v30.117h9.412V24.471zm.847-10.353a5.421 5.421 0 0 0-5.384-5.46h-.17a5.459 5.459 0 0 0 0 10.918 5.421 5.421 0 0 0 5.554-5.289v-.17zm34.917 22.174c0-9.054-5.76-12.574-11.482-12.574a10.73 10.73 0 0 0-9.525 4.856h-.263v-4.103H24.47v30.117h9.411V38.57a6.25 6.25 0 0 1 5.647-6.738h.358c2.993 0 5.214 1.882 5.214 6.625v16.132h9.412l.075-18.296z"/></svg></a><a href="https://www.youtube.com/@peoplewoo" class="zpsocialprofile-wrapper zpsocialprofile-youtube" target="_blank" aria-label="YouTube"><svg aria-hidden="true" class="zpsocialprofile" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><path d="M32.786 10l.106.001.392.002c1.94.009 6.896.05 11.873.237l.765.03c4.589.187 9.063.504 11.068 1.04 2.71.73 4.84 2.86 5.56 5.56 1.204 4.505 1.301 13.515 1.31 14.939v.382c-.009 1.424-.106 10.434-1.31 14.939a7.885 7.885 0 0 1-5.56 5.56c-4.455 1.19-21.107 1.3-24.098 1.309h-.923c-2.99-.01-19.635-.118-24.099-1.309a7.885 7.885 0 0 1-5.56-5.56c-.401-1.502-.68-3.504-.873-5.559l-.058-.65c-.314-3.688-.368-7.394-.377-8.552L1 32.124v-.194-.054l.002-.245c.009-1.158.063-4.864.377-8.552l.058-.65c.193-2.055.472-4.057.873-5.559a7.885 7.885 0 0 1 5.56-5.56c4.296-1.146 19.878-1.29 23.706-1.307L31.97 10h.105zM26.15 22.57v18.86L42.48 32l-16.33-9.43z"/></svg></a><a href="https://www.instagram.com/peoplewoo_consulting/" class="zpsocialprofile-wrapper zpsocialprofile-instagram" target="_blank" aria-label="Instagram"><svg aria-hidden="true" class="zpsocialprofile" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient x1="72.5875139%" y1="0%" x2="28.281045%" y2="106.524963%" id="linearGradient-1"><stop stop-color="#9A1DF1" offset="0%"></stop><stop stop-color="#ED1E64" offset="49.3618943%"></stop><stop stop-color="#FFD002" offset="100%"></stop></linearGradient><path d="M18.7470755,0.221595251 C15.3422244,0.382299247 13.0166948,0.927668835 10.9845413,1.72394402 C8.8808805,2.5440464 7.09761014,3.64310557 5.32364538,5.42434073 C3.54758782,7.20661909 2.45687425,8.99304465 1.64301187,11.0988238 C0.855031083,13.1361614 0.321066295,15.4627981 0.170711099,18.8697484 C0.0214311023,22.2829708 -0.012802497,23.3716107 0.00383750267,32.0611721 C0.0204135023,40.7496967 0.0587623014,41.8403975 0.221527098,45.254631 C0.384285494,48.6585158 0.927619882,50.9830597 1.72388866,53.0162565 C2.54502785,55.1199428 3.64296062,56.9022276 5.42521338,58.6772547 C7.20645494,60.4522883 8.9939045,61.5419779 11.1006629,62.3569282 C13.1359204,63.1438722 15.46353,63.6799042 18.8694627,63.8291842 C22.2826082,63.9795458 23.3722466,64.0127042 32.0596384,63.9961282 C40.7511454,63.9795458 41.8408478,63.941165 45.2539933,63.7794178 C48.6588444,63.616653 50.9822875,63.0712898 53.0165275,62.2770946 C55.1201883,61.4538563 56.9034586,60.3579395 58.6774234,58.5756547 C60.4513945,56.7943876 61.5421081,55.0069188 62.3560345,52.9001285 C63.1440153,50.8648453 63.6800089,48.5372038 63.8282777,45.1333446 C63.9775577,41.7180679 64.0128665,40.6273351 63.9962265,31.9388169 C63.9796441,23.2492555 63.9402841,22.1606092 63.7785369,18.7484684 C63.6167897,15.3414861 63.0714329,13.0179854 62.2761753,10.9837454 C61.4540249,8.88005905 60.3571033,7.0987919 58.5758618,5.32274074 C56.7946202,3.54875038 55.0071771,2.4559312 52.9004123,1.64411682 C50.8641371,0.856129637 48.5375324,0.319048049 45.1316061,0.171822452 C41.7184606,0.0204496555 40.6288222,-0.0127087437 31.9383264,0.00387365592 C23.2499298,0.0204560555 22.160285,0.0577936547 18.7470755,0.221595251 M19.1203747,58.0696835 C16.0006051,57.9338499 14.3064996,57.4154436 13.1774308,56.9810372 C11.682346,56.4024772 10.6154853,55.7088452 9.49261809,54.5942852 C8.37184371,53.4755524 7.67612533,52.4117765 7.09241974,50.9198021 C6.65381495,49.7906885 6.12611576,48.0986182 5.97993337,44.9788358 C5.82129017,41.6060871 5.78502777,40.5941383 5.76945657,32.0497481 C5.75287417,23.5074443 5.78394617,22.4954955 5.93120377,19.1196428 C6.06491897,16.0019213 6.58648055,14.3057037 7.01983094,13.1776334 C7.59834613,11.6804686 8.28988531,10.6156558 9.40655089,9.49280784 C10.5252389,8.36992787 11.5889956,7.67628948 13.081994,7.0925775 C14.2100452,6.65191191 15.9021283,6.12831512 19.0208227,5.98007832 C22.3956194,5.82038552 23.4064738,5.78618392 31.9486944,5.76960153 C40.4929438,5.75298713 41.5048734,5.78307992 44.8807453,5.93134872 C47.9983644,6.06715032 49.6945564,6.58350231 50.8216028,7.0199951 C52.3176987,7.59852308 53.3845595,8.28801427 54.5064091,9.40674704 C55.628201,10.5254798 56.323913,11.5871694 56.9076186,13.0832846 C57.3482458,14.2082189 57.8718362,15.9023821 58.0190938,19.0201036 C58.1797594,22.3949387 58.2160858,23.4068555 58.231593,31.9491913 C58.2481754,40.4935879 58.2171034,41.5054983 58.0688346,44.8792902 C57.933033,47.9990726 57.4156442,49.6942725 56.9802074,50.8243973 C56.4016858,52.3184581 55.710089,53.3853316 54.5924123,54.5082116 C53.4747995,55.6269444 52.4110427,56.3246916 50.9169691,56.9084356 C49.7910044,57.348026 48.0968988,57.8726723 44.9802333,58.0209411 C41.6055006,58.1795587 40.5945822,58.2158467 32.0492576,58.2314179 C23.507037,58.2480131 22.4961826,58.2158659 19.1203747,58.0696835 M45.2073489,14.8946189 C45.2114717,17.0138765 46.9346204,18.729806 49.053846,18.7256663 C51.1740891,18.7215116 52.8900251,16.9993549 52.8869253,14.8800973 C52.8827483,12.7608398 51.1595931,11.043899 49.03935,11.0480387 C46.9191132,11.052187 45.2031773,12.7753614 45.2073489,14.8946189 M15.5693094,32.0310857 C15.5869347,41.1063495 22.957565,48.4469894 32.0305952,48.4293954 C41.1046942,48.4117446 48.4493852,41.0430983 48.4318231,31.9678665 C48.414134,22.8957323 41.0424926,15.5509133 31.967376,15.5685072 C22.8942818,15.5861645 15.5516836,22.9579403 15.5693094,32.0310857 M21.3328633,32.0196937 C21.3225058,26.1295435 26.0897377,21.344654 31.978768,21.3342528 C37.868867,21.3228812 42.6547101,26.0880651 42.6661227,31.9792585 C42.6775581,37.870452 37.9103198,42.6542983 32.0192032,42.6657427 C26.1301793,42.6771143 21.3442722,37.9108872 21.3328633,32.0196937" id="path-2"></path></defs><g stroke="none" stroke-width="1" fill-rule="evenodd"><mask fill="white"><use xlink:href="#path-2"></use></mask><use class="cl-path-inherit" fill="url(#linearGradient-1)" xlink:href="#path-2"></use></g></svg></a><a href="https://wa.me/+917875494672" class="zpsocialprofile-wrapper zpsocialprofile-whatsapp" target="_blank" aria-label="WhatsApp"><svg aria-hidden="true" class="zpsocialprofile" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><defs><linearGradient x1="49.9999983%" y1="100%" x2="49.9999983%" y2="0.00237659529%" id="wtlinearGradient-1"><stop stop-color="#F9F9F9" offset="0%"></stop><stop stop-color="#FFFFFF" offset="100%"></stop></linearGradient></defs><g stroke="none" stroke-width="1" fill-rule="evenodd"><g fill-rule="nonzero"><path class="cl-path-transparent" d="M1.10771574,62.8926967 L5.4728797,47.0284478 C2.78074848,42.3847708 1.36440022,37.1174751 1.3659281,31.7224137 C1.37356752,14.8421228 15.1734138,1.1088243 32.1283401,1.1088243 C40.3575222,1.11186634 48.0825026,4.30144735 53.8884609,10.0874112 C59.6974751,15.873375 62.8938079,23.5651781 62.8907543,31.745229 C62.8831127,48.6255199 49.0832664,62.3603394 32.1283401,62.3603394 C32.1283401,62.3603394 32.1283401,62.3603394 32.1283401,62.3603394 L32.1145892,62.3603394 C26.9656208,62.3588184 21.9067976,61.0720346 17.4148193,58.633838 L1.10618786,62.8911757 L1.10771574,62.8926967 Z" fill="#25D266"></path><path class="cl-path-inherit" d="M32.1344517,0 C40.6585153,0.00304204197 48.6585147,3.30669962 54.6753211,9.30104333 C60.6905995,15.295387 64.0030515,23.264016 64,31.7376239 C63.9924328,49.0469187 49.9804471,63.1660029 32.660306,63.4466537 L32.1344517,63.4509114 L32.1344517,63.4509114 L32.1207007,63.4509114 C26.7883863,63.4493904 21.5477449,62.116976 16.893811,59.5905602 L0.00152788378,64 L0,64 L4.52100811,47.5668893 C1.73262021,42.7574209 0.265851778,37.3015186 0.267379662,31.7117665 C0.27501908,14.2261093 14.5683718,0 32.1344517,0 Z M32.143619,5.35703591 C17.5339943,5.35703591 5.65316999,17.179932 5.6470572,31.7132875 C5.64553057,36.6931103 7.04507211,41.5436462 9.69595047,45.7401431 L10.3269665,46.7379328 L7.65011409,56.464862 L17.6745596,53.8487059 L17.6760875,53.8487059 L18.6432379,54.4190888 C22.7089366,56.8207809 27.37051,58.0908335 32.1237565,58.0938755 L32.1344517,58.0938755 C46.7318533,58.0938755 58.6142055,46.2694584 58.6203176,31.7345818 C58.6218449,24.6907337 55.8701262,18.0682083 50.8693626,13.0868646 C45.868599,8.10552083 39.2192487,5.36007795 32.143619,5.35703591 Z M20.8510299,17.0688705 C21.3827335,17.0688705 21.9129092,17.0673765 22.3773858,17.0871497 C22.9457586,17.1099651 23.5737188,17.1358224 24.1695935,18.4560686 L24.1695935,18.4560686 C24.8785316,20.0242413 26.4262779,23.9439124 26.6249028,24.3408988 C26.8235276,24.7378853 26.9564535,25.2002757 26.6906018,25.729591 C26.42475,26.2589063 26.2918241,26.5889678 25.8945743,27.0513582 C25.4957966,27.5152696 25.057294,28.0856525 24.6997692,28.4400504 C24.2994636,28.8339948 23.8854071,29.2644438 24.3498838,30.0568957 C24.8143605,30.8508686 26.4125269,33.4457304 28.7792189,35.5462604 C31.8212355,38.2460727 34.3865524,39.0826342 35.1825798,39.4796207 C35.9786073,39.8766072 36.4430839,39.8096822 36.9075606,39.2803669 C37.3720373,38.7525727 38.8983932,36.966894 39.4285688,36.1744421 C39.9602724,35.3804691 40.4904481,35.512798 41.2207765,35.7774556 C41.9511049,36.0405922 45.8655432,37.9585997 46.6615706,38.3555862 C47.4575981,38.7525727 47.9893016,38.9503054 48.1879265,39.2803669 C48.3865514,39.6119495 48.3865514,41.1983744 47.7234499,43.0494569 C47.0588204,44.9005395 43.8090116,46.6846971 42.3483547,46.8170259 C42.2952399,46.8218379 42.2422464,46.8271688 42.189112,46.8328475 L42.0290247,46.850756 C40.6602396,47.0089406 39.0295689,47.2820712 32.7929696,44.8336146 C24.6997692,41.6562017 19.5905258,33.3970578 19.1917482,32.8692635 C18.7944984,32.3399482 15.9404115,28.5708582 15.9404115,24.6709604 C15.9404115,20.7710626 17.996943,18.8530551 18.7272715,18.0606032 C19.4575999,17.2681512 20.3193264,17.0688705 20.8510299,17.0688705 Z" fill="url(#wtlinearGradient-1)"></path></g></g></svg></a></div>
</div></div></div></div></div></div> ]]></content:encoded><pubDate>Fri, 28 Nov 2025 03:51:29 +0530</pubDate></item><item><title><![CDATA[Arrays in JavaScript | LWC JavaScript Tutorial | Peoplewoo Skills]]></title><link>https://www.peoplewoo.com/blogs/post/arrays-in-javascript-lwc-javascript-tutorial-peoplewoo-skills</link><description><![CDATA[ Arrays are one of the most essential data structures in JavaScript and are used everywhere in&nbsp; Lightning Web Components (LWC) . Whether you're ren ]]></description><content:encoded><![CDATA[<div class="zpcontent-container blogpost-container "><div data-element-id="elm_VSFK6u_qTROrUlbkwFcnHQ" data-element-type="section" class="zpsection "><style type="text/css"></style><div class="zpcontainer-fluid zpcontainer"><div data-element-id="elm_AX1H_FWwTISZjTAoLhORpg" data-element-type="row" class="zprow zprow-container zpalign-items- zpjustify-content- " data-equal-column=""><style type="text/css"></style><div data-element-id="elm_QmO3R2StSMOPjvWG4mBR2w" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-8 zpcol-sm-12 zpalign-self- "><style type="text/css"></style><div data-element-id="elm_zt8AQ9V5TPuN5ANXWKA81A" data-element-type="image" class="zpelement zpelem-image "><style> @media (min-width: 992px) { [data-element-id="elm_zt8AQ9V5TPuN5ANXWKA81A"] .zpimage-container figure img { width: 730px ; height: 677.66px ; } } </style><div data-caption-color="" data-size-tablet="" data-size-mobile="" data-align="center" data-tablet-image-separate="false" data-mobile-image-separate="false" class="zpimage-container zpimage-align-center zpimage-tablet-align-center zpimage-mobile-align-center zpimage-size-fit zpimage-tablet-fallback-fit zpimage-mobile-fallback-fit hb-lightbox " data-lightbox-options="
                type:fullscreen,
                theme:dark"><figure role="none" class="zpimage-data-ref"><span class="zpimage-anchor" role="link" tabindex="0" aria-label="Open Lightbox" style="cursor:pointer;"><picture><img class="zpimage zpimage-style-none zpimage-space-none " src="/Group%20300.png" size="fit" data-lightbox="true"/></picture></span></figure></div>
</div><div data-element-id="elm_pfjc3-aGJQ56E4Rt5J6YrA" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><section><p><span style="color:rgb(0, 0, 0);"></span></p></section><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p></div>
<div><p></p><div><header><p></p><div><section><p><span style="color:rgb(0, 0, 0);"></span></p></section><div><p></p><div><section><p><span style="color:rgb(0, 0, 0);"></span></p></section><div><section><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);">Arrays are one of the most essential data structures in JavaScript and are used everywhere in&nbsp;<strong>Lightning Web Components (LWC)</strong>. Whether you're rendering a list in HTML, processing Apex data, iterating over records, or building UI for dynamic components—arrays are always involved.</span></p><p><span style="color:rgb(0, 0, 0);">This in-depth guide (3000+ words) will take you from the fundamentals of JavaScript arrays to advanced patterns, performance techniques, LWC-specific use cases, and industry-level best practices.</span></p><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">What Is an Array in JavaScript?</span></h2><p><span style="color:rgb(0, 0, 0);">An&nbsp;<strong>array</strong>&nbsp;is an ordered list-like object used to store multiple values in a single variable. In JavaScript, arrays are extremely flexible — they can store:</span></p><ul><li><span style="color:rgb(0, 0, 0);">Numbers</span></li><li><span style="color:rgb(0, 0, 0);">Strings</span></li><li><span style="color:rgb(0, 0, 0);">Objects</span></li><li><span style="color:rgb(0, 0, 0);">Booleans</span></li><li><span style="color:rgb(0, 0, 0);">Functions</span></li><li><span style="color:rgb(0, 0, 0);">Other Arrays (Nested Arrays)</span></li></ul><h3><span style="color:rgb(0, 0, 0);">Basic Example</span></h3><pre><code style="color:rgb(0, 0, 0);"> const skills = [&quot;JavaScript&quot;, &quot;LWC&quot;, &quot;Apex&quot;, &quot;Data Cloud&quot;]; console.log(skills); </code></pre><div><span style="color:rgb(0, 0, 0);"><br/></span></div></div></div></div></div></div></section></div></div></div></div></header></div><p></p><p></p><div><h2><span style="color:rgb(0, 0, 0);">Watch Our Video Tutorial</span></h2></div>
<p></p></div><section><div><h2><span style="color:rgb(0, 0, 0);"></span></h2></div>
<p></p></section></div><p></p></div></div><div data-element-id="elm_qAMFt-Zt1KjQ-2sA7GRp3g" data-element-type="video" class="zpelement zpelem-video "><style type="text/css"> @media (max-width: 767px) { [data-element-id="elm_qAMFt-Zt1KjQ-2sA7GRp3g"].zpelem-video iframe.zpvideo{ width:560px !important; height:315px !important; } } @media all and (min-width: 768px) and (max-width:991px){ [data-element-id="elm_qAMFt-Zt1KjQ-2sA7GRp3g"].zpelem-video iframe.zpvideo{ width:560px !important; height:315px !important; } } </style><div class="zpvideo-container zpiframe-align-left zpiframe-mobile-align-center zpiframe-tablet-align-center"><iframe class="zpvideo " width="2000" height="315" src="//www.youtube.com/embed/iRlXlpKf1CU?enablejsapi=1" frameborder="0" allowfullscreen id=youtube-video-1 data-api=youtube></iframe></div>
</div><div data-element-id="elm_QlHXRdluq-pxYjAQryfSiQ" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h2><span style="color:rgb(0, 0, 0);">How JavaScript Stores Arrays (Internal Working)</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);"> JavaScript arrays are not traditional arrays like C/C++. Internally, arrays in JS behave more like <strong>dynamic hash maps</strong>: </span></p><ul><li><span style="color:rgb(0, 0, 0);">Index → Key</span></li><li><span style="color:rgb(0, 0, 0);">Value → Stored Against Key</span></li><li><span style="color:rgb(0, 0, 0);">Resizable → Automatically increases size</span></li></ul><p><span style="color:rgb(0, 0, 0);"> This makes JavaScript arrays extremely powerful and easy to use, but it also means: </span></p><ul><li><span style="color:rgb(0, 0, 0);">They may not be the fastest for heavy numeric operations</span></li><li><span style="color:rgb(0, 0, 0);">Indexes don’t always represent continuous memory blocks</span></li><li><span style="color:rgb(0, 0, 0);">Performance varies depending on usage pattern</span></li></ul><div><span style="color:rgb(0, 0, 0);"><br/></span></div><h2><span style="color:rgb(0, 0, 0);">Creating Arrays</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><h3><span style="color:rgb(0, 0, 0);">1. Array Literal (Most Common)</span></h3><pre><code style="color:rgb(0, 0, 0);"> const fruits = [&quot;Apple&quot;, &quot;Banana&quot;, &quot;Mango&quot;]; </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h3><span style="color:rgb(0, 0, 0);">2. Using the Array Constructor</span></h3><pre><code style="color:rgb(0, 0, 0);"> const numbers = new Array(10, 20, 30); </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h3><span style="color:rgb(0, 0, 0);">3. Empty Array + Adding Later</span></h3><pre><code style="color:rgb(0, 0, 0);"> const list = []; list.push(&quot;Peoplewoo Skills&quot;); </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h3><span style="color:rgb(0, 0, 0);">4. Mixed Data Types</span></h3><pre><code style="color:rgb(0, 0, 0);"> const mixed = [1, &quot;Amit&quot;, true, { role: &quot;Developer&quot; }, [1, 2, 3]]; </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><pre></pre><h2><span style="color:rgb(0, 0, 0);">Accessing Elements &amp; Indexing</span></h2><pre><code style="color:rgb(0, 0, 0);"> const colors = [&quot;Red&quot;, &quot;Green&quot;, &quot;Blue&quot;]; console.log(colors[0]); </code></pre><pre><code style="color:rgb(0, 0, 0);">// Red console.log(colors[2]); // Blue </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h3><span style="color:rgb(0, 0, 0);">Length Property</span></h3><pre><code style="color:rgb(0, 0, 0);"> console.log(colors.length); // 3 </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h3><span style="color:rgb(0, 0, 0);">Last Element</span></h3><pre><code style="color:rgb(0, 0, 0);"> console.log(colors[colors.length - 1]); </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h2><span style="color:rgb(0, 0, 0);">Mutating vs Non-Mutating Array Methods</span></h2><table border="1" cellpadding="8" cellspacing="0"><tbody><tr><th><span style="color:rgb(0, 0, 0);">Mutating Methods</span></th><th><span style="color:rgb(0, 0, 0);">Non-Mutating Methods</span></th></tr><tr><td><span style="color:rgb(0, 0, 0);">push(), pop(), shift(), unshift()</span></td><td><span style="color:rgb(0, 0, 0);">map(), filter(), slice()</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">sort(), reverse(), splice()</span></td><td><span style="color:rgb(0, 0, 0);">concat(), includes(), find()</span></td></tr></tbody></table><p><strong style="color:rgb(0, 0, 0);"><br/></strong></p><p><span style="color:rgb(0, 0, 0);"><strong>Important for LWC:</strong> Avoid mutating arrays directly because it may not trigger UI updates. Use non-mutating patterns or assign new arrays.</span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h2><span style="color:rgb(0, 0, 0);">Most Important Array Methods (Detailed Explanation)</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><h3><span style="color:rgb(0, 0, 0);">1. push() – Add to end (Mutates)</span></h3><pre><code style="color:rgb(0, 0, 0);"> const items = [1, 2]; items.push(3); // [1, 2, 3] </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h3><span style="color:rgb(0, 0, 0);">2. pop() – Remove from end</span></h3><pre><code style="color:rgb(0, 0, 0);"> items.pop(); </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h3><span style="color:rgb(0, 0, 0);">3. unshift() — Add to start</span></h3><pre><code style="color:rgb(0, 0, 0);"> items.unshift(0); // [0,1,2] </code></pre><h3><span style="color:rgb(0, 0, 0);">4. shift() — Remove from start</span></h3><pre><code style="color:rgb(0, 0, 0);"> items.shift(); </code></pre><pre><code style="color:rgb(0, 0, 0);"> </code></pre><pre></pre><h2><span style="color:rgb(0, 0, 0);">High-Level Functional Array Methods</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><h3><span style="color:rgb(0, 0, 0);">map() — Transform each element</span></h3><pre><code style="color:rgb(0, 0, 0);"> const doubled = [1,2,3].map(num =&gt; num * 2); console.log(doubled); // [2,4,6]</code></pre><pre><code style="color:rgb(0, 0, 0);"> </code></pre><h3><span style="color:rgb(0, 0, 0);">filter() — Keep only matching items</span></h3><pre><code style="color:rgb(0, 0, 0);"> const filtered = [1,2,3,4].filter(num =&gt; num % 2 === 0); // [2,4] </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h3><span style="color:rgb(0, 0, 0);">find() — Return first matching element</span></h3><pre><code style="color:rgb(0, 0, 0);"> const found = [10,20,30].find(x =&gt; x &gt; 15);  // 20 </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h3><span style="color:rgb(0, 0, 0);">every() — Check if all match</span></h3><pre><code style="color:rgb(0, 0, 0);"> [2,4,6].every(x =&gt; x % 2 === 0); // true </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h3><span style="color:rgb(0, 0, 0);">some() — Check if at least one matches</span></h3><pre><code style="color:rgb(0, 0, 0);"> [1,3,5,6].some(x =&gt; x % 2 === 0); // true </code></pre><h3><span style="color:rgb(0, 0, 0);">findIndex() — Return index of first match</span></h3><pre><code style="color:rgb(0, 0, 0);"> [10,20,30].findIndex(x =&gt; x === 20); // 1 </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h3><span style="color:rgb(0, 0, 0);">reduce() — The Most Powerful Method</span></h3><p><span style="color:rgb(0, 0, 0);">Reduce converts an entire array into a single value: number, object, string, or new array.</span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h3><span style="color:rgb(0, 0, 0);">Example: Sum</span></h3><pre><code style="color:rgb(0, 0, 0);"> const sum = [1,2,3].reduce((acc, curr) =&gt; acc + curr, 0); // 6 </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h3><span style="color:rgb(0, 0, 0);">Example: Count Occurrences</span></h3><pre><code style="color:rgb(0, 0, 0);"> const names = [&quot;Amit&quot;, &quot;Amit&quot;, &quot;Suraj&quot;];</code></pre><pre><code style="color:rgb(0, 0, 0);"> const count = names.reduce((acc, name) =&gt;</code></pre><pre><code style="color:rgb(0, 0, 0);"> {     acc[name] = (acc[name] || 0) + 1;   </code></pre><pre><code style="color:rgb(0, 0, 0);">  return acc; }, {}); </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h2><span style="color:rgb(0, 0, 0);">Sorting Arrays</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><h3><span style="color:rgb(0, 0, 0);">Default Sorting (Alphabetical)</span></h3><pre><code style="color:rgb(0, 0, 0);"> [&quot;Banana&quot;, &quot;Apple&quot;].sort(); </code></pre><pre><code style="color:rgb(0, 0, 0);"> </code></pre><h3><span style="color:rgb(0, 0, 0);">Numeric Sorting</span></h3><pre><code style="color:rgb(0, 0, 0);"> [10,5,100].sort((a,b) =&gt; a-b); </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h3><span style="color:rgb(0, 0, 0);">Sorting Objects</span></h3><pre><span style="color:rgb(0, 0, 0);"><code> const contacts =</code> [   {name:&quot;Amit&quot;, age: 30}, </span></pre><pre><span style="color:rgb(0, 0, 0);">  {name:&quot;Suraj&quot;, age:25} ]; contacts.sort((a,b) =&gt; a.age - b.age); </span></pre><pre><span style="color:rgb(0, 0, 0);"><br/></span></pre><pre></pre><h2><span style="color:rgb(0, 0, 0);">Spread Operator (…) – Modern Array Power</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><h3><span style="color:rgb(0, 0, 0);">Clone Array</span></h3><pre><code style="color:rgb(0, 0, 0);"> const arr = [1,2,3]; const cloned = [...arr]; </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h3><span style="color:rgb(0, 0, 0);">Merge Arrays</span></h3><pre><code style="color:rgb(0, 0, 0);"> const all = [...arr1, ...arr2]; </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h3><span style="color:rgb(0, 0, 0);">Add Items Without Mutation</span></h3><pre><code style="color:rgb(0, 0, 0);"> const updated = [...arr, 4]; </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><pre></pre><h2><span style="color:rgb(0, 0, 0);">Rest Operator (…) – Collect Remaining Values</span></h2><pre><code style="color:rgb(0, 0, 0);"> const [first, ...rest] = [1,2,3,4]; console.log(rest); // [2,3,4] </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h2><span style="color:rgb(0, 0, 0);">Array Destructuring</span></h2><pre><code style="color:rgb(0, 0, 0);"> const [a, b] = [&quot;LWC&quot;, &quot;Apex&quot;]; console.log(a); // LWC </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h3><span style="color:rgb(0, 0, 0);">Skipping Values</span></h3><pre><code style="color:rgb(0, 0, 0);"> const [x,,y] = [10,20,30]; </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><pre></pre><h2><span style="color:rgb(0, 0, 0);">Multidimensional Arrays</span></h2><pre><code style="color:rgb(0, 0, 0);"> const matrix = [   [1,2],   [3,4] ]; console.log(matrix[1][0]); // 3 </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><pre></pre><h2><span style="color:rgb(0, 0, 0);">Immutability in LWC — Critical Concept</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);">Avoid mutating arrays like below:</span></p><pre><code style="color:rgb(0, 0, 0);"> // Bad for LWC reactivity this.items.push(&quot;New&quot;); </code></pre><p><span style="color:rgb(0, 0, 0);">Always use:</span></p><pre><code style="color:rgb(0, 0, 0);"> // Good this.items = [...this.items, &quot;New&quot;]; </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h2><span style="color:rgb(0, 0, 0);">Working with Arrays of Objects</span></h2><h3><span style="color:rgb(0, 0, 0);">Updating an object inside an array</span></h3><div><span style="color:rgb(0, 0, 0);"><br/></span></div><pre><code style="color:rgb(0, 0, 0);"> this.contacts = this.contacts.map(contact =&gt;</code></pre><pre><code style="color:rgb(0, 0, 0);">     contact.Id === selectedId         ? { ...contact, status: &quot;Updated&quot; } </code></pre><pre><code style="color:rgb(0, 0, 0);">        : contact ); </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h3><span style="color:rgb(0, 0, 0);">Removing an item</span></h3><pre><code style="color:rgb(0, 0, 0);"> this.contacts = this.contacts.filter(c =&gt; c.Id !== selectedId); </code></pre><pre><code style="color:rgb(0, 0, 0);"><br/></code></pre><h2><span style="color:rgb(0, 0, 0);">Performance Tips for Arrays</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><ul><li><span style="color:rgb(0, 0, 0);">Use <code>map()</code> and <code>filter()</code> instead of loops whenever possible</span></li><li><span style="color:rgb(0, 0, 0);">Prefer spread operator over JSON cloning</span></li><li><span style="color:rgb(0, 0, 0);">Avoid <code>sort()</code> repeatedly — it mutates</span></li><li><span style="color:rgb(0, 0, 0);">Use <code>find()</code> instead of filtering entire array when only one match is needed</span></li><li><span style="color:rgb(0, 0, 0);">Avoid deeply nested arrays (hard to debug)</span></li><li><span style="color:rgb(0, 0, 0);">Use <code>for</code> loops only for performance-sensitive tasks</span></li></ul><div><span style="color:rgb(0, 0, 0);"><br/></span></div><div></div><h2><span style="color:rgb(0, 0, 0);">Best Practices Summary</span></h2><ul><li><span style="color:rgb(0, 0, 0);">Use <strong>const</strong> for arrays to avoid accidental reassignment</span></li><li><span style="color:rgb(0, 0, 0);">Prefer immutable patterns in LWC</span></li><li><span style="color:rgb(0, 0, 0);">Use <strong>map</strong>, <strong>filter</strong>, <strong>reduce</strong> instead of writing manual loops</span></li><li><span style="color:rgb(0, 0, 0);">Avoid using <strong>splice()</strong> directly (mutates)</span></li><li><span style="color:rgb(0, 0, 0);">Use <strong>for:each</strong> with key attributes like Id</span></li><li><span style="color:rgb(0, 0, 0);">Always clone arrays before modifying them</span></li></ul><div><br/></div></div>
</div><div class="zpelement zpelem-carousel " data-element-id="elm_byTBvaroUVlqNQzB3l0WEQ" data-element-type="carousel" data-currentslide-index="0" data-transition="slide_left" data-zs-autoslide="false" data-zs-slider="min-height-el: zpcarousel-content-container;arrow-cont: zpcarousel-arrows-container; active-controller: zpcarousel-controller-active; controller-cont: zpcarousel-controller-container; controller: zpcarousel-controller; right-arrow: zpcarousel-arrow-right; left-arrow: zpcarousel-arrow-left;active-slide:zpcarousel-content-active; slide: zpcarousel-content; slides-cont: zpcarousel-content-container;content-cont : zpcarousel-content-inner; background: false;slide-pause-btn:zpcarousel-pause-btn;slide-play-btn:zpcarousel-play-btn;"><div class="zpcarousel-container zpcarousel-style-01"><style></style><div class="zpcarousel-content-container"><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_-dxt0NaImCeUb0jHYGM2Ow" data-slide-name="Slide 1"><div class="zpcarousel-content-inner"><div data-element-id="elm_4Jy8AFUbkHw4IXVthKXcwg" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_eO9573nNV2JPmlpkVUhEdg" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_SiJIPTsI0iZNgc4tajDCvw" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Dharmesh R.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>The explanations are clear, and the repetition really helps to reinforce the concepts. It covers everything in detail, from the basics to more advanced topics. The course includes in-depth examples that make complex ideas easy to understand. Overall, I’m really impressed and can’t wait to explore more!</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_NZnF622zgu6xIrpJo386_g" data-slide-name="Slide 2"><div class="zpcarousel-content-inner"><div data-element-id="elm_hHh-tqVupL3HL8KYT1kf9Q" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm__dSB6W4LHkpHg36wJiyBsw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_GHUL9IsOVpazUCwTJjdzMw" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Jermaine L.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>Taking this course like help me acquire all the knowledge and skills I need to excel and optimize my performance to fulfilling my operational duties in my current role as an email marketing specialist</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_v3u8hhd_AsZxORmwnoA_2g" data-slide-name="Slide 3"><div class="zpcarousel-content-inner"><div data-element-id="elm_DD4MpNQtMS1HKlrokaUzeA" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_k40UvPeZYpsuUJLZc3IAZw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_t0XTYi6tHJ5BJkc4CqF21g" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Sumit N.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>Awesome explanation. He keep repeating which helps to remind/refresh the concepts. Loved it</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_hy7Rbr8nliB0X9rRDa5aow" data-slide-name="Slide 4"><div class="zpcarousel-content-inner"><div data-element-id="elm_QL8Q-Kw-ITIb4l-A8xb-mA" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_OAbkKPefCMhNQsVayTvj2w" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_NgbzA5biiFsJ40IvZ4dfyg" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Varun V.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>It's a great course that covers everything you need to know. After almost finishing, I feel confident using the SDC platform. Definitely a 5-star experience!</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_aJlL0IwMmDJL1pq3VxCvig" data-slide-name="Slide 5"><div class="zpcarousel-content-inner"><div data-element-id="elm_WVzZlT8_Ygn-L_HvDcrbhA" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_nz3RpOWIfz2pKHIP8PmbXw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_cdESQ-gJxvN41XpT7ZaAkg" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Prajakta Nimba S.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>This course is perfect for anyone looking to build a solid foundation in Salesforce Data Cloud. The content is well-structured, easy to follow, and packed with real-world examples that make the concepts practical</span></span></p></div>
</div></div></div></div></div></div></div><div class="zpcarousel-arrows-container zpcarousel-arrow-type-01" data-arrow-style="2"><div class="zpcarousel-arrow-left" tabindex="0" role="button" aria-label="Previous"><svg aria-hidden="true" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" class="svg-icon-18px"><path d="M0,16c0,0.3,0.1,0.5,0.3,0.7l9.9,10c0.4,0.4,1,0.4,1.4,0c0.4-0.4,0.4-1,0-1.4L3.4,17H31 c0.6,0,1-0.5,1-1s-0.4-1-1-1H3.4l8.2-8.3c0.4-0.4,0.4-1,0-1.4c-0.4-0.4-1-0.4-1.4,0l-9.9,10C0.1,15.5,0,15.7,0,16z"></path></svg></div>
<div class="zpcarousel-arrow-right" tabindex="0" role="button" aria-label="Next"><svg aria-hidden="true" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" class="svg-icon-18px"><path id="arrow-right-style2-Arrow_Forward" d="M32,16c0-0.3-0.1-0.5-0.3-0.7l-9.9-10c-0.4-0.4-1-0.4-1.4,0c-0.4,0.4-0.4,1,0,1.4 l8.2,8.3H1c-0.6,0-1,0.5-1,1s0.4,1,1,1h27.6l-8.2,8.3c-0.4,0.4-0.4,1,0,1.4c0.4,0.4,1,0.4,1.4,0l9.9-10C31.9,16.5,32,16.3,32,16z"></path></svg></div>
</div><div class="zpcarousel-controller-container zpcarousel-controller-type-01"><div class="zpcarousel-controller zpcarousel-controller-active" data-slide-index="0"></div>
<div class="zpcarousel-controller " data-slide-index="1"></div><div class="zpcarousel-controller " data-slide-index="2"></div>
<div class="zpcarousel-controller " data-slide-index="3"></div><div class="zpcarousel-controller " data-slide-index="4"></div>
</div></div></div><div data-element-id="elm_Vu-0h7FBeerqTMPmZaWlug" data-element-type="heading" class="zpelement zpelem-heading "><style></style><h2
 class="zpheading zpheading-style-none zpheading-align-left zpheading-align-mobile-left zpheading-align-tablet-left " data-editor="true"><span><span style="color:rgb(0, 0, 0);">Frequently Asked Questions (FAQ)</span><br/></span></h2></div>
<div data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA" data-element-type="accordion" class="zpelement zpelem-accordion " data-tabs-inactive="false" data-icon-style="1"><style> [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion, [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content{ border-style:solid; border-color: !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content.zpaccordion-active-content:last-of-type{ border-block-end-width:1px !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion.zpaccordion-active + .zpaccordion-content{ border-block-start-color: transparent !important; } @media all and (min-width: 768px) and (max-width:991px){ [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion, [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content{ border-style:solid; border-color: !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content:last-of-type{ border-block-end-width:1px !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion.zpaccordion-active + .zpaccordion-content{ border-block-start-color: transparent !important; } } @media all and (max-width:767px){ [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion, [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content{ border-style:solid; border-color: !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content:last-of-type{ border-block-end-width:1px !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion.zpaccordion-active + .zpaccordion-content{ border-block-start-color: transparent !important; } } </style><div class="zpaccordion-container zpaccordion-style-01 zpaccordion-with-icon zpaccord-svg-icon-1 zpaccordion-icon-align-left "><div data-element-id="elm_avqPnRbxn96EwANShYaFjg" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="1. Are arrays mutable in JavaScript?" data-content-id="elm_X8MB5lkAUEcGoYBtGrpljg" style="margin-top:0;" tabindex="0" role="button" aria-label="1. Are arrays mutable in JavaScript?"><span class="zpaccordion-name">1. Are arrays mutable in JavaScript?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_X8MB5lkAUEcGoYBtGrpljg" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_u5Cj1v0VUadpxrxv948nyw" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_7ezNrxV4FkYz7RGU1G0BtQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_hae4_dzBKBBmMQbSfRCyug" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p><strong style="color:rgb(0, 0, 0);"></strong></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><div><div><p><span style="color:rgb(0, 0, 0);"><span></span></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"><span></span></span></p><div><p>Yes, but LWC prefers immutable patterns for reactivity.</p></div><p></p></div><p></p></div><p></p></div><p></p></div></div></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div>
</div></div></div></div></div><div data-element-id="elm_2U5i1G2PT4th-0HwQ_qYMg" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="2. Can arrays store objects?" data-content-id="elm_HWiLrHq626LLO7HEwZZO0A" style="margin-top:0;" tabindex="0" role="button" aria-label="2. Can arrays store objects?"><span class="zpaccordion-name">2. Can arrays store objects?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_HWiLrHq626LLO7HEwZZO0A" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_EsUHLPDiEOSRoxW1Va1vSQ" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_e_hMh4qQPANv9Gq71QOCbQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_yDDgYpCDh88L_B4yVqVDpw" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><div><span style="color:rgb(0, 0, 0);"><div><p><span></span></p><div><p></p><div><p></p><div><p></p><div><p></p><div><p>Yes, objects, arrays, and even functions.</p></div><p></p></div><p></p></div><p></p></div><p></p></div></div></span><p></p></div></div></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div></div></div></div></div></div></div>
</div></div></div></div></div><div data-element-id="elm_z819rp9QtsimO7OBe5fUQQ" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="3. What is the best way to clone an array?" data-content-id="elm_G0J2WJbaranPy8N5RGud_Q" style="margin-top:0;" tabindex="0" role="button" aria-label="3. What is the best way to clone an array?"><span class="zpaccordion-name">3. What is the best way to clone an array?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_G0J2WJbaranPy8N5RGud_Q" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_NLdjpQsYYYsfKNQ4rWhxJg" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_mCo9PctebWjYnQx_burGTQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_PUMBoTZ3jG3CqnmnOda7FA" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);">Use:&nbsp;<code>[...array]</code></span></p></div><p></p></div><p></p></div><p></p></div><p></p></div></div>
</div></div></div></div></div><div data-element-id="elm_MrzO9Mu2yvjD1yOveoN1ag" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="4. Should I use map() instead of forEach()?" data-content-id="elm_VCfqx-I0okQtrLLtQgg6uQ" style="margin-top:0;" tabindex="0" role="button" aria-label="4. Should I use map() instead of forEach()?"><span class="zpaccordion-name">4. Should I use map() instead of forEach()?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_VCfqx-I0okQtrLLtQgg6uQ" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_83IdZWSoCFzucCnLahu5cw" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_lHAb9U1G1dgp1V6c444ATQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_Q-zMCoK5NRejxdtEjZeb0g" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p style="color:rgb(0, 0, 0);"></p><div><p style="color:rgb(0, 0, 0);"></p><div><p style="color:rgb(0, 0, 0);"></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);">Use&nbsp;<code>map()</code>&nbsp;when you want to create a new array. Use&nbsp;<code>forEach()</code>&nbsp;when you don’t need a new array.</span></p></div><p></p></div><p></p></div><p></p></div><p style="color:rgb(0, 0, 0);"></p></div><p style="color:rgb(0, 0, 0);"></p></div><p style="color:rgb(0, 0, 0);"></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div>
</div></div></div></div></div><div data-element-id="elm_tbTU4vUzVyHxec4fh5treA" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="5. How do arrays trigger UI updates in LWC?" data-content-id="elm_ytAT6ZF-UgNskNSKR7FuZQ" style="margin-top:0;" tabindex="0" role="button" aria-label="5. How do arrays trigger UI updates in LWC?"><span class="zpaccordion-name">5. How do arrays trigger UI updates in LWC?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_ytAT6ZF-UgNskNSKR7FuZQ" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_I_fDz0ybSUu9nfzEuPrMMg" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_LJZ6EEKHjUSNa8ZMVwDadw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_zjpsXejtTlBuGOWTiUljMA" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><div><span style="color:rgb(0, 0, 0);"><div><p></p><div>By assigning a new array reference, not mutating the existing one.</div><p></p></div></span></div></div>
</div></div></div></div></div></div></div><div data-element-id="elm_8m4TfeROM6fQN9AHueEupg" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p><span style="font-family:Poppins, sans-serif;font-size:40px;font-weight:600;color:rgb(0, 0, 0);">Conclusion</span></p><div><div><span style="color:rgb(0, 0, 0);"><strong></strong></span></div><div><p></p></div>
</div><div><p></p><div><section><p></p></section></div></div><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p><div><p></p><div><p></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p><div><p></p><div><p></p><div><p></p><div><p></p></div></div></div></div></div></div></div></div></div><div><p></p><div><p></p><div><div><p><span style="color:rgb(0, 0, 0);">Arrays are extremely powerful in JavaScript and essential for developing modern Lightning Web Components. From rendering lists to processing Apex results, filtering records, transforming data, and managing UI — arrays form the backbone of dynamic LWC development.</span></p><p><span style="color:rgb(0, 0, 0);">Mastering arrays will help you write cleaner, faster, and more efficient Salesforce components.</span></p></div><div><span style="color:rgb(0, 0, 0);"><br/></span></div></div></div></div>
</div></div></div><p></p><div><div><h2></h2></div><div><div><h2><span style="color:rgb(0, 0, 0);">More SFDC Resources</span></h2></div><span style="color:rgb(0, 0, 0);"><br/></span><div><span style="font-style:italic;color:rgb(0, 0, 0);"><p>Start your SFMC journey today — join our&nbsp;<strong><a href="https://www.peoplewoo.com/" target="_blank" rel="">Live Training</a></strong>&nbsp;</p><p>Need help? Chat with us on&nbsp;<strong><a href="https://wa.me/%2B917875494672" rel="">WhatsApp</a></strong>&nbsp;anytime.</p><p>Learn. Practice. Get Certified. Succeed with&nbsp;<strong><a href="https://www.youtube.com/%40peoplewoo" target="_blank" rel="">Peoplewoo Skills</a></strong><a href="https://www.youtube.com/redirect?event=video_description&amp;redir_token=QUFFLUhqbUhyQUhpemJaOGZXR1RFRmxub3lNZlR4QW43QXxBQ3Jtc0ttMFhRMWtISFBVdlhJYlNab3NZS0hRd0RrQ0hwaTNGVEVhX2hVWUo3TktGN3VGa2FIWWtsQ1QtM0wxWG1ud0ZEeG02OG1CU3ZvVkE3ekNUUjZoaWFxZmhsUHNMR2diOEl5Wm5ROEpiUTVJSkJfQjF1MA&amp;q=https%3A%2F%2Fchat.whatsapp.com%2FKGLPRc9tofo0oiyd9oQW4E&amp;v=d_fgnADOmiQ" target="_blank" rel="">.</a></p></span></div></div><div><span style="font-style:italic;color:rgb(0, 0, 0);"><p><a href="https://www.youtube.com/%40peoplewoo" rel=""></a></p></span></div>
</div><p></p></div><p></p></div></div></div><div data-element-id="elm_KnMYXjQPWbIKC85JEm98qw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-4 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div class="zpelement zpelem-newsletter " data-list-id="" data-integ-type="" data-element-id="elm_eV_tPTfOVvRvGG8gHurC3Q" data-element-type="newsletter"><style type="text/css"></style><div class="zpnewsletter-container zpnewsletter-style-01 "><h2 class="zpheading zpheading-align-center zpnewsletter-heading" data-editor="true">Subscribe to our newsletter</h2><p class="zptext zptext-align-center zpnewsletter-desc" data-editor="true"> Stay informed about our latest updates through email. Subscribe here.</p><form class="zpform-container zpnewsletter-input-container"><label for="Email_elm_eV_tPTfOVvRvGG8gHurC3Q" class="zs-visually-hidden">Email</label><input type="text" id="Email_elm_eV_tPTfOVvRvGG8gHurC3Q" name="email" placeholder="Email" class="zpnewsletter-email-input-field"/><button type="submit" class="zpbutton zpnewsletter-button zpbutton-type-primary zpbutton-size-md">Subscribe</button></form></div>
</div><div data-element-id="elm_3-a_z2EN2Rdvo4WVGz-Y1Q" itemscope="" data-element-type="socialprofile" class="zpelement zpelem-socialprofile" data-element-id="elm_3-a_z2EN2Rdvo4WVGz-Y1Q"><style type="text/css"></style><div data-socialprofile_container class="zpsocialprofile-container zpsocialprofile-size-md zpsocialprofile-halign-center zpsocialprofile-align-mobile-center zpsocialprofile-align-tablet-center zpsocialprofile-style-none zpsocialprofile-type-color "><a href="https://www.linkedin.com/company/peoplewoo" class="zpsocialprofile-wrapper zpsocialprofile-linkedin" target="_blank" aria-label="LinkedIn"><svg aria-hidden="true" class="zpsocialprofile" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><path d="M64 4.706v54.588A4.706 4.706 0 0 1 59.294 64H4.706A4.706 4.706 0 0 1 0 59.294V4.706A4.706 4.706 0 0 1 4.706 0h54.588A4.706 4.706 0 0 1 64 4.706zM18.824 24.47H9.412v30.117h9.412V24.471zm.847-10.353a5.421 5.421 0 0 0-5.384-5.46h-.17a5.459 5.459 0 0 0 0 10.918 5.421 5.421 0 0 0 5.554-5.289v-.17zm34.917 22.174c0-9.054-5.76-12.574-11.482-12.574a10.73 10.73 0 0 0-9.525 4.856h-.263v-4.103H24.47v30.117h9.411V38.57a6.25 6.25 0 0 1 5.647-6.738h.358c2.993 0 5.214 1.882 5.214 6.625v16.132h9.412l.075-18.296z"/></svg></a><a href="https://www.youtube.com/@peoplewoo" class="zpsocialprofile-wrapper zpsocialprofile-youtube" target="_blank" aria-label="YouTube"><svg aria-hidden="true" class="zpsocialprofile" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><path d="M32.786 10l.106.001.392.002c1.94.009 6.896.05 11.873.237l.765.03c4.589.187 9.063.504 11.068 1.04 2.71.73 4.84 2.86 5.56 5.56 1.204 4.505 1.301 13.515 1.31 14.939v.382c-.009 1.424-.106 10.434-1.31 14.939a7.885 7.885 0 0 1-5.56 5.56c-4.455 1.19-21.107 1.3-24.098 1.309h-.923c-2.99-.01-19.635-.118-24.099-1.309a7.885 7.885 0 0 1-5.56-5.56c-.401-1.502-.68-3.504-.873-5.559l-.058-.65c-.314-3.688-.368-7.394-.377-8.552L1 32.124v-.194-.054l.002-.245c.009-1.158.063-4.864.377-8.552l.058-.65c.193-2.055.472-4.057.873-5.559a7.885 7.885 0 0 1 5.56-5.56c4.296-1.146 19.878-1.29 23.706-1.307L31.97 10h.105zM26.15 22.57v18.86L42.48 32l-16.33-9.43z"/></svg></a><a href="https://www.instagram.com/peoplewoo_consulting/" class="zpsocialprofile-wrapper zpsocialprofile-instagram" target="_blank" aria-label="Instagram"><svg aria-hidden="true" class="zpsocialprofile" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient x1="72.5875139%" y1="0%" x2="28.281045%" y2="106.524963%" id="linearGradient-1"><stop stop-color="#9A1DF1" offset="0%"></stop><stop stop-color="#ED1E64" offset="49.3618943%"></stop><stop stop-color="#FFD002" offset="100%"></stop></linearGradient><path d="M18.7470755,0.221595251 C15.3422244,0.382299247 13.0166948,0.927668835 10.9845413,1.72394402 C8.8808805,2.5440464 7.09761014,3.64310557 5.32364538,5.42434073 C3.54758782,7.20661909 2.45687425,8.99304465 1.64301187,11.0988238 C0.855031083,13.1361614 0.321066295,15.4627981 0.170711099,18.8697484 C0.0214311023,22.2829708 -0.012802497,23.3716107 0.00383750267,32.0611721 C0.0204135023,40.7496967 0.0587623014,41.8403975 0.221527098,45.254631 C0.384285494,48.6585158 0.927619882,50.9830597 1.72388866,53.0162565 C2.54502785,55.1199428 3.64296062,56.9022276 5.42521338,58.6772547 C7.20645494,60.4522883 8.9939045,61.5419779 11.1006629,62.3569282 C13.1359204,63.1438722 15.46353,63.6799042 18.8694627,63.8291842 C22.2826082,63.9795458 23.3722466,64.0127042 32.0596384,63.9961282 C40.7511454,63.9795458 41.8408478,63.941165 45.2539933,63.7794178 C48.6588444,63.616653 50.9822875,63.0712898 53.0165275,62.2770946 C55.1201883,61.4538563 56.9034586,60.3579395 58.6774234,58.5756547 C60.4513945,56.7943876 61.5421081,55.0069188 62.3560345,52.9001285 C63.1440153,50.8648453 63.6800089,48.5372038 63.8282777,45.1333446 C63.9775577,41.7180679 64.0128665,40.6273351 63.9962265,31.9388169 C63.9796441,23.2492555 63.9402841,22.1606092 63.7785369,18.7484684 C63.6167897,15.3414861 63.0714329,13.0179854 62.2761753,10.9837454 C61.4540249,8.88005905 60.3571033,7.0987919 58.5758618,5.32274074 C56.7946202,3.54875038 55.0071771,2.4559312 52.9004123,1.64411682 C50.8641371,0.856129637 48.5375324,0.319048049 45.1316061,0.171822452 C41.7184606,0.0204496555 40.6288222,-0.0127087437 31.9383264,0.00387365592 C23.2499298,0.0204560555 22.160285,0.0577936547 18.7470755,0.221595251 M19.1203747,58.0696835 C16.0006051,57.9338499 14.3064996,57.4154436 13.1774308,56.9810372 C11.682346,56.4024772 10.6154853,55.7088452 9.49261809,54.5942852 C8.37184371,53.4755524 7.67612533,52.4117765 7.09241974,50.9198021 C6.65381495,49.7906885 6.12611576,48.0986182 5.97993337,44.9788358 C5.82129017,41.6060871 5.78502777,40.5941383 5.76945657,32.0497481 C5.75287417,23.5074443 5.78394617,22.4954955 5.93120377,19.1196428 C6.06491897,16.0019213 6.58648055,14.3057037 7.01983094,13.1776334 C7.59834613,11.6804686 8.28988531,10.6156558 9.40655089,9.49280784 C10.5252389,8.36992787 11.5889956,7.67628948 13.081994,7.0925775 C14.2100452,6.65191191 15.9021283,6.12831512 19.0208227,5.98007832 C22.3956194,5.82038552 23.4064738,5.78618392 31.9486944,5.76960153 C40.4929438,5.75298713 41.5048734,5.78307992 44.8807453,5.93134872 C47.9983644,6.06715032 49.6945564,6.58350231 50.8216028,7.0199951 C52.3176987,7.59852308 53.3845595,8.28801427 54.5064091,9.40674704 C55.628201,10.5254798 56.323913,11.5871694 56.9076186,13.0832846 C57.3482458,14.2082189 57.8718362,15.9023821 58.0190938,19.0201036 C58.1797594,22.3949387 58.2160858,23.4068555 58.231593,31.9491913 C58.2481754,40.4935879 58.2171034,41.5054983 58.0688346,44.8792902 C57.933033,47.9990726 57.4156442,49.6942725 56.9802074,50.8243973 C56.4016858,52.3184581 55.710089,53.3853316 54.5924123,54.5082116 C53.4747995,55.6269444 52.4110427,56.3246916 50.9169691,56.9084356 C49.7910044,57.348026 48.0968988,57.8726723 44.9802333,58.0209411 C41.6055006,58.1795587 40.5945822,58.2158467 32.0492576,58.2314179 C23.507037,58.2480131 22.4961826,58.2158659 19.1203747,58.0696835 M45.2073489,14.8946189 C45.2114717,17.0138765 46.9346204,18.729806 49.053846,18.7256663 C51.1740891,18.7215116 52.8900251,16.9993549 52.8869253,14.8800973 C52.8827483,12.7608398 51.1595931,11.043899 49.03935,11.0480387 C46.9191132,11.052187 45.2031773,12.7753614 45.2073489,14.8946189 M15.5693094,32.0310857 C15.5869347,41.1063495 22.957565,48.4469894 32.0305952,48.4293954 C41.1046942,48.4117446 48.4493852,41.0430983 48.4318231,31.9678665 C48.414134,22.8957323 41.0424926,15.5509133 31.967376,15.5685072 C22.8942818,15.5861645 15.5516836,22.9579403 15.5693094,32.0310857 M21.3328633,32.0196937 C21.3225058,26.1295435 26.0897377,21.344654 31.978768,21.3342528 C37.868867,21.3228812 42.6547101,26.0880651 42.6661227,31.9792585 C42.6775581,37.870452 37.9103198,42.6542983 32.0192032,42.6657427 C26.1301793,42.6771143 21.3442722,37.9108872 21.3328633,32.0196937" id="path-2"></path></defs><g stroke="none" stroke-width="1" fill-rule="evenodd"><mask fill="white"><use xlink:href="#path-2"></use></mask><use class="cl-path-inherit" fill="url(#linearGradient-1)" xlink:href="#path-2"></use></g></svg></a><a href="https://wa.me/+917875494672" class="zpsocialprofile-wrapper zpsocialprofile-whatsapp" target="_blank" aria-label="WhatsApp"><svg aria-hidden="true" class="zpsocialprofile" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><defs><linearGradient x1="49.9999983%" y1="100%" x2="49.9999983%" y2="0.00237659529%" id="wtlinearGradient-1"><stop stop-color="#F9F9F9" offset="0%"></stop><stop stop-color="#FFFFFF" offset="100%"></stop></linearGradient></defs><g stroke="none" stroke-width="1" fill-rule="evenodd"><g fill-rule="nonzero"><path class="cl-path-transparent" d="M1.10771574,62.8926967 L5.4728797,47.0284478 C2.78074848,42.3847708 1.36440022,37.1174751 1.3659281,31.7224137 C1.37356752,14.8421228 15.1734138,1.1088243 32.1283401,1.1088243 C40.3575222,1.11186634 48.0825026,4.30144735 53.8884609,10.0874112 C59.6974751,15.873375 62.8938079,23.5651781 62.8907543,31.745229 C62.8831127,48.6255199 49.0832664,62.3603394 32.1283401,62.3603394 C32.1283401,62.3603394 32.1283401,62.3603394 32.1283401,62.3603394 L32.1145892,62.3603394 C26.9656208,62.3588184 21.9067976,61.0720346 17.4148193,58.633838 L1.10618786,62.8911757 L1.10771574,62.8926967 Z" fill="#25D266"></path><path class="cl-path-inherit" d="M32.1344517,0 C40.6585153,0.00304204197 48.6585147,3.30669962 54.6753211,9.30104333 C60.6905995,15.295387 64.0030515,23.264016 64,31.7376239 C63.9924328,49.0469187 49.9804471,63.1660029 32.660306,63.4466537 L32.1344517,63.4509114 L32.1344517,63.4509114 L32.1207007,63.4509114 C26.7883863,63.4493904 21.5477449,62.116976 16.893811,59.5905602 L0.00152788378,64 L0,64 L4.52100811,47.5668893 C1.73262021,42.7574209 0.265851778,37.3015186 0.267379662,31.7117665 C0.27501908,14.2261093 14.5683718,0 32.1344517,0 Z M32.143619,5.35703591 C17.5339943,5.35703591 5.65316999,17.179932 5.6470572,31.7132875 C5.64553057,36.6931103 7.04507211,41.5436462 9.69595047,45.7401431 L10.3269665,46.7379328 L7.65011409,56.464862 L17.6745596,53.8487059 L17.6760875,53.8487059 L18.6432379,54.4190888 C22.7089366,56.8207809 27.37051,58.0908335 32.1237565,58.0938755 L32.1344517,58.0938755 C46.7318533,58.0938755 58.6142055,46.2694584 58.6203176,31.7345818 C58.6218449,24.6907337 55.8701262,18.0682083 50.8693626,13.0868646 C45.868599,8.10552083 39.2192487,5.36007795 32.143619,5.35703591 Z M20.8510299,17.0688705 C21.3827335,17.0688705 21.9129092,17.0673765 22.3773858,17.0871497 C22.9457586,17.1099651 23.5737188,17.1358224 24.1695935,18.4560686 L24.1695935,18.4560686 C24.8785316,20.0242413 26.4262779,23.9439124 26.6249028,24.3408988 C26.8235276,24.7378853 26.9564535,25.2002757 26.6906018,25.729591 C26.42475,26.2589063 26.2918241,26.5889678 25.8945743,27.0513582 C25.4957966,27.5152696 25.057294,28.0856525 24.6997692,28.4400504 C24.2994636,28.8339948 23.8854071,29.2644438 24.3498838,30.0568957 C24.8143605,30.8508686 26.4125269,33.4457304 28.7792189,35.5462604 C31.8212355,38.2460727 34.3865524,39.0826342 35.1825798,39.4796207 C35.9786073,39.8766072 36.4430839,39.8096822 36.9075606,39.2803669 C37.3720373,38.7525727 38.8983932,36.966894 39.4285688,36.1744421 C39.9602724,35.3804691 40.4904481,35.512798 41.2207765,35.7774556 C41.9511049,36.0405922 45.8655432,37.9585997 46.6615706,38.3555862 C47.4575981,38.7525727 47.9893016,38.9503054 48.1879265,39.2803669 C48.3865514,39.6119495 48.3865514,41.1983744 47.7234499,43.0494569 C47.0588204,44.9005395 43.8090116,46.6846971 42.3483547,46.8170259 C42.2952399,46.8218379 42.2422464,46.8271688 42.189112,46.8328475 L42.0290247,46.850756 C40.6602396,47.0089406 39.0295689,47.2820712 32.7929696,44.8336146 C24.6997692,41.6562017 19.5905258,33.3970578 19.1917482,32.8692635 C18.7944984,32.3399482 15.9404115,28.5708582 15.9404115,24.6709604 C15.9404115,20.7710626 17.996943,18.8530551 18.7272715,18.0606032 C19.4575999,17.2681512 20.3193264,17.0688705 20.8510299,17.0688705 Z" fill="url(#wtlinearGradient-1)"></path></g></g></svg></a></div>
</div></div></div></div></div></div> ]]></content:encoded><pubDate>Thu, 27 Nov 2025 10:12:58 +0530</pubDate></item><item><title><![CDATA[Functions & Methods in JavaScript | LWC JavaScript Tutorial | Peoplewoo Skills]]></title><link>https://www.peoplewoo.com/blogs/post/functions-methods-in-javascript-lwc-javascript-tutorial-peoplewoo-skills</link><description><![CDATA[ Functions and methods are the backbone of JavaScript and are heavily used in&nbsp; Lightning Web Components (LWC) . From handling events to processing ]]></description><content:encoded><![CDATA[<div class="zpcontent-container blogpost-container "><div data-element-id="elm_VSFK6u_qTROrUlbkwFcnHQ" data-element-type="section" class="zpsection "><style type="text/css"></style><div class="zpcontainer-fluid zpcontainer"><div data-element-id="elm_AX1H_FWwTISZjTAoLhORpg" data-element-type="row" class="zprow zprow-container zpalign-items- zpjustify-content- " data-equal-column=""><style type="text/css"></style><div data-element-id="elm_QmO3R2StSMOPjvWG4mBR2w" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-8 zpcol-sm-12 zpalign-self- "><style type="text/css"></style><div data-element-id="elm_zt8AQ9V5TPuN5ANXWKA81A" data-element-type="image" class="zpelement zpelem-image "><style> @media (min-width: 992px) { [data-element-id="elm_zt8AQ9V5TPuN5ANXWKA81A"] .zpimage-container figure img { width: 730px ; height: 677.66px ; } } </style><div data-caption-color="" data-size-tablet="" data-size-mobile="" data-align="center" data-tablet-image-separate="false" data-mobile-image-separate="false" class="zpimage-container zpimage-align-center zpimage-tablet-align-center zpimage-mobile-align-center zpimage-size-fit zpimage-tablet-fallback-fit zpimage-mobile-fallback-fit hb-lightbox " data-lightbox-options="
                type:fullscreen,
                theme:dark"><figure role="none" class="zpimage-data-ref"><span class="zpimage-anchor" role="link" tabindex="0" aria-label="Open Lightbox" style="cursor:pointer;"><picture><img class="zpimage zpimage-style-none zpimage-space-none " src="/Group%20300.png" size="fit" data-lightbox="true"/></picture></span></figure></div>
</div><div data-element-id="elm_pfjc3-aGJQ56E4Rt5J6YrA" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><section><p><span style="color:rgb(0, 0, 0);"></span></p></section><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p></div>
<div><p></p><div><header><p></p><div><section><p><span style="color:rgb(0, 0, 0);"></span></p></section><div><p></p><div><section><p><span style="color:rgb(0, 0, 0);"></span></p></section><div><section><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p>Functions and methods are the backbone of JavaScript and are heavily used in&nbsp;<strong>Lightning Web Components (LWC)</strong>. From handling events to processing Apex responses, almost every LWC action involves a function or method.</p><p><br/></p><h2>What Is a Function in JavaScript?</h2><div><br/></div><p>A&nbsp;<strong>function</strong>&nbsp;is a block of reusable code designed to perform a specific task. Functions help organize code, reduce repetition, and make components easier to maintain.</p><p><br/></p><h3>Example:</h3><pre> function greet() {     console.log(&quot;Hello Peoplewoo Skills!&quot;); } greet(); </pre></div><p><span style="color:rgb(0, 0, 0);"></span></p></div><p></p></div><p></p></div><p></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p></section></div></div></div></div></header></div><p></p><p></p><div><h2><span style="color:rgb(0, 0, 0);">Watch Our Video Tutorial</span></h2></div>
<p></p></div><section><div><h2><span style="color:rgb(0, 0, 0);"></span></h2></div>
<p></p></section></div><p></p></div></div><div data-element-id="elm_o959lDuxzzXYK462MuU4aA" data-element-type="video" class="zpelement zpelem-video "><style type="text/css"> @media (max-width: 767px) { [data-element-id="elm_o959lDuxzzXYK462MuU4aA"].zpelem-video iframe.zpvideo{ width:560px !important; height:315px !important; } } @media all and (min-width: 768px) and (max-width:991px){ [data-element-id="elm_o959lDuxzzXYK462MuU4aA"].zpelem-video iframe.zpvideo{ width:560px !important; height:315px !important; } } </style><div class="zpvideo-container zpiframe-align-left zpiframe-mobile-align-center zpiframe-tablet-align-center"><iframe class="zpvideo " width="2000" height="315" src="//www.youtube.com/embed/O8lgbrNLO3I?enablejsapi=1" frameborder="0" allowfullscreen id=youtube-video-1 data-api=youtube></iframe></div>
</div><div data-element-id="elm_QlHXRdluq-pxYjAQryfSiQ" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><section><p></p><p></p><h2>Types of Functions in JavaScript</h2><div><br/></div><h3>1. Function Declaration</h3><pre> function add(a, b) {     return a + b; } </pre><pre><br/></pre><h3>2. Function Expression</h3><pre> const multiply = function(a, b) {     return a * b; };</pre><pre> </pre><h3>3. Arrow Functions (Most used in LWC)</h3><pre> const subtract = (a, b) =&gt; a - b; </pre><pre><br/></pre><h3>4. Anonymous Functions</h3><p>Functions without a name, usually used as callbacks.</p><pre> setTimeout(function() {     console.log(&quot;Delayed!&quot;); }, 1000); </pre><pre><br/></pre><h3>5. Immediately Invoked Function Expression (IIFE)</h3><pre> (function() {     console.log(&quot;Runs immediately!&quot;); })(); </pre><p><br/></p><h2>What Are Methods in JavaScript?</h2><div><br/></div><p> A <strong>method</strong> is a function stored inside an object. In LWC, methods are used inside classes or component controllers. </p><p><br/></p><h3>Example:</h3><div><br/></div><pre> const user = {     name: &quot;Amit&quot;,     greet() {     </pre><pre>    console.log(&quot;Hello &quot; + this.name);     } }; user.greet(); </pre><pre><br/></pre><h2>Functions vs Methods</h2><table border="1" cellpadding="8" cellspacing="0"><tbody><tr><th>Functions</th><th>Methods</th></tr><tr><td>Independent blocks of code</td><td>Functions defined inside objects</td></tr><tr><td>Can be called anywhere</td><td>Called using object reference</td></tr><tr><td>Not tied to objects</td><td>Usually depend on object properties</td></tr></tbody></table><hr/><p><br/></p><h2>Functions in LWC – Real-Life Examples</h2><div><br/></div><h3>1. Event Handler Function</h3><pre> handleClick() {     console.log(&quot;Button clicked&quot;); } </pre><pre><br/></pre><h3>2. Function Calling Apex in LWC</h3><pre> loadContacts() {     getContacts()         .then(result =&gt; </pre><pre>{             this.contacts = result;         })         </pre><pre>.catch(error =&gt; {             console.error(error);         }); } </pre><pre><br/></pre><h3>3. Arrow Functions for Callback</h3><pre> connectedCallback() {     setTimeout(() =&gt; {     </pre><pre>    console.log(&quot;Component Loaded!&quot;);     }, 1000); } </pre><pre><br/></pre><pre></pre><h2>Useful Built-In Methods in JavaScript</h2><div><br/></div><h3>String Methods</h3><pre> &quot;peoplewoo&quot;.toUpperCase(); &quot; Skills &quot;.trim(); </pre><pre><br/></pre><h3>Array Methods</h3><pre> [1, 2, 3].map(x =&gt; x * 2); [1, 2, 3].filter(x =&gt; x &gt; 1); </pre><pre><br/></pre><h3>Object Methods</h3><pre> Object.keys(user); Object.values(user); </pre><pre><br/></pre><h3>Math Methods</h3><pre> Math.random(); Math.floor(4.7);</pre><pre><br/></pre><h2>Parameters &amp; Arguments in Functions</h2><div><br/></div><pre> function welcome(name, course) {     return `Hello ${name},</pre><pre> welcome to ${course}!`; } console.log(welcome(&quot;Amit&quot;, &quot;Peoplewoo Skills&quot;)); </pre><p><strong>Parameters</strong> = variables inside function definition <br/><strong>Arguments</strong> = values passed when calling function </p><h2><br/></h2><h2>Return Statement</h2><p> The&nbsp;<code>return</code> keyword sends data back from a function. </p><pre> function square(n) {     return n * n; } </pre><h2><br/></h2><h2>Why Functions Are Important in LWC?</h2><ul><li>Handle user events (click, input change, button press)</li><li>Call Apex methods</li><li>Process API responses</li><li>Trigger child-to-parent communication</li><li>Handle conditional rendering</li><li>Perform reusable logic</li></ul><h2><br/></h2><h2>Best Practices</h2><ul><li>Use arrow functions for callbacks</li><li>Keep functions small and focused on one task</li><li>Use descriptive names like <code>handleSave</code> or <code>loadData</code></li><li>Avoid deep nested functions</li><li>Reuse methods instead of repeating code</li></ul></section></div>
</div><div class="zpelement zpelem-carousel " data-element-id="elm_byTBvaroUVlqNQzB3l0WEQ" data-element-type="carousel" data-currentslide-index="0" data-transition="slide_left" data-zs-autoslide="false" data-zs-slider="min-height-el: zpcarousel-content-container;arrow-cont: zpcarousel-arrows-container; active-controller: zpcarousel-controller-active; controller-cont: zpcarousel-controller-container; controller: zpcarousel-controller; right-arrow: zpcarousel-arrow-right; left-arrow: zpcarousel-arrow-left;active-slide:zpcarousel-content-active; slide: zpcarousel-content; slides-cont: zpcarousel-content-container;content-cont : zpcarousel-content-inner; background: false;slide-pause-btn:zpcarousel-pause-btn;slide-play-btn:zpcarousel-play-btn;"><div class="zpcarousel-container zpcarousel-style-01"><style></style><div class="zpcarousel-content-container"><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_-dxt0NaImCeUb0jHYGM2Ow" data-slide-name="Slide 1"><div class="zpcarousel-content-inner"><div data-element-id="elm_4Jy8AFUbkHw4IXVthKXcwg" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_eO9573nNV2JPmlpkVUhEdg" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_SiJIPTsI0iZNgc4tajDCvw" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Dharmesh R.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>The explanations are clear, and the repetition really helps to reinforce the concepts. It covers everything in detail, from the basics to more advanced topics. The course includes in-depth examples that make complex ideas easy to understand. Overall, I’m really impressed and can’t wait to explore more!</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_NZnF622zgu6xIrpJo386_g" data-slide-name="Slide 2"><div class="zpcarousel-content-inner"><div data-element-id="elm_hHh-tqVupL3HL8KYT1kf9Q" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm__dSB6W4LHkpHg36wJiyBsw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_GHUL9IsOVpazUCwTJjdzMw" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Jermaine L.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>Taking this course like help me acquire all the knowledge and skills I need to excel and optimize my performance to fulfilling my operational duties in my current role as an email marketing specialist</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_v3u8hhd_AsZxORmwnoA_2g" data-slide-name="Slide 3"><div class="zpcarousel-content-inner"><div data-element-id="elm_DD4MpNQtMS1HKlrokaUzeA" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_k40UvPeZYpsuUJLZc3IAZw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_t0XTYi6tHJ5BJkc4CqF21g" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Sumit N.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>Awesome explanation. He keep repeating which helps to remind/refresh the concepts. Loved it</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_hy7Rbr8nliB0X9rRDa5aow" data-slide-name="Slide 4"><div class="zpcarousel-content-inner"><div data-element-id="elm_QL8Q-Kw-ITIb4l-A8xb-mA" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_OAbkKPefCMhNQsVayTvj2w" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_NgbzA5biiFsJ40IvZ4dfyg" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Varun V.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>It's a great course that covers everything you need to know. After almost finishing, I feel confident using the SDC platform. Definitely a 5-star experience!</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_aJlL0IwMmDJL1pq3VxCvig" data-slide-name="Slide 5"><div class="zpcarousel-content-inner"><div data-element-id="elm_WVzZlT8_Ygn-L_HvDcrbhA" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_nz3RpOWIfz2pKHIP8PmbXw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_cdESQ-gJxvN41XpT7ZaAkg" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Prajakta Nimba S.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>This course is perfect for anyone looking to build a solid foundation in Salesforce Data Cloud. The content is well-structured, easy to follow, and packed with real-world examples that make the concepts practical</span></span></p></div>
</div></div></div></div></div></div></div><div class="zpcarousel-arrows-container zpcarousel-arrow-type-01" data-arrow-style="2"><div class="zpcarousel-arrow-left" tabindex="0" role="button" aria-label="Previous"><svg aria-hidden="true" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" class="svg-icon-18px"><path d="M0,16c0,0.3,0.1,0.5,0.3,0.7l9.9,10c0.4,0.4,1,0.4,1.4,0c0.4-0.4,0.4-1,0-1.4L3.4,17H31 c0.6,0,1-0.5,1-1s-0.4-1-1-1H3.4l8.2-8.3c0.4-0.4,0.4-1,0-1.4c-0.4-0.4-1-0.4-1.4,0l-9.9,10C0.1,15.5,0,15.7,0,16z"></path></svg></div>
<div class="zpcarousel-arrow-right" tabindex="0" role="button" aria-label="Next"><svg aria-hidden="true" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" class="svg-icon-18px"><path id="arrow-right-style2-Arrow_Forward" d="M32,16c0-0.3-0.1-0.5-0.3-0.7l-9.9-10c-0.4-0.4-1-0.4-1.4,0c-0.4,0.4-0.4,1,0,1.4 l8.2,8.3H1c-0.6,0-1,0.5-1,1s0.4,1,1,1h27.6l-8.2,8.3c-0.4,0.4-0.4,1,0,1.4c0.4,0.4,1,0.4,1.4,0l9.9-10C31.9,16.5,32,16.3,32,16z"></path></svg></div>
</div><div class="zpcarousel-controller-container zpcarousel-controller-type-01"><div class="zpcarousel-controller zpcarousel-controller-active" data-slide-index="0"></div>
<div class="zpcarousel-controller " data-slide-index="1"></div><div class="zpcarousel-controller " data-slide-index="2"></div>
<div class="zpcarousel-controller " data-slide-index="3"></div><div class="zpcarousel-controller " data-slide-index="4"></div>
</div></div></div><div data-element-id="elm_Vu-0h7FBeerqTMPmZaWlug" data-element-type="heading" class="zpelement zpelem-heading "><style></style><h2
 class="zpheading zpheading-style-none zpheading-align-left zpheading-align-mobile-left zpheading-align-tablet-left " data-editor="true"><span><span style="color:rgb(0, 0, 0);">Frequently Asked Questions (FAQ)</span><br/></span></h2></div>
<div data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA" data-element-type="accordion" class="zpelement zpelem-accordion " data-tabs-inactive="false" data-icon-style="1"><style> [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion, [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content{ border-style:solid; border-color: !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content.zpaccordion-active-content:last-of-type{ border-block-end-width:1px !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion.zpaccordion-active + .zpaccordion-content{ border-block-start-color: transparent !important; } @media all and (min-width: 768px) and (max-width:991px){ [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion, [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content{ border-style:solid; border-color: !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content:last-of-type{ border-block-end-width:1px !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion.zpaccordion-active + .zpaccordion-content{ border-block-start-color: transparent !important; } } @media all and (max-width:767px){ [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion, [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content{ border-style:solid; border-color: !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content:last-of-type{ border-block-end-width:1px !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion.zpaccordion-active + .zpaccordion-content{ border-block-start-color: transparent !important; } } </style><div class="zpaccordion-container zpaccordion-style-01 zpaccordion-with-icon zpaccord-svg-icon-1 zpaccordion-icon-align-left "><div data-element-id="elm_avqPnRbxn96EwANShYaFjg" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="1. What is the main difference between functions and methods?" data-content-id="elm_X8MB5lkAUEcGoYBtGrpljg" style="margin-top:0;" tabindex="0" role="button" aria-label="1. What is the main difference between functions and methods?"><span class="zpaccordion-name">1. What is the main difference between functions and methods?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_X8MB5lkAUEcGoYBtGrpljg" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_u5Cj1v0VUadpxrxv948nyw" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_7ezNrxV4FkYz7RGU1G0BtQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_hae4_dzBKBBmMQbSfRCyug" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p><strong style="color:rgb(0, 0, 0);"></strong></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><div><div><p><span style="color:rgb(0, 0, 0);"><span></span></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"><span>A function is independent, while a method belongs to an object.</span></span></p></div><p></p></div><p></p></div><p></p></div></div></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div>
</div></div></div></div></div><div data-element-id="elm_2U5i1G2PT4th-0HwQ_qYMg" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="2. Are arrow functions recommended in LWC?" data-content-id="elm_HWiLrHq626LLO7HEwZZO0A" style="margin-top:0;" tabindex="0" role="button" aria-label="2. Are arrow functions recommended in LWC?"><span class="zpaccordion-name">2. Are arrow functions recommended in LWC?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_HWiLrHq626LLO7HEwZZO0A" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_EsUHLPDiEOSRoxW1Va1vSQ" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_e_hMh4qQPANv9Gq71QOCbQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_yDDgYpCDh88L_B4yVqVDpw" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><div><span style="color:rgb(0, 0, 0);"><div><p><span></span></p><div><p></p><div><p></p><div><p></p><div><p>Yes, they are widely used because they keep the correct&nbsp;<code>this</code>&nbsp;context.</p></div><p></p></div><p></p></div><p></p></div></div></span><p></p></div></div></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div></div></div></div></div></div></div>
</div></div></div></div></div><div data-element-id="elm_z819rp9QtsimO7OBe5fUQQ" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="3. Can functions return objects?" data-content-id="elm_G0J2WJbaranPy8N5RGud_Q" style="margin-top:0;" tabindex="0" role="button" aria-label="3. Can functions return objects?"><span class="zpaccordion-name">3. Can functions return objects?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_G0J2WJbaranPy8N5RGud_Q" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_NLdjpQsYYYsfKNQ4rWhxJg" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_mCo9PctebWjYnQx_burGTQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_PUMBoTZ3jG3CqnmnOda7FA" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p>Yes, functions can return any data type including objects and arrays.</p></div><p></p></div><p></p></div><p></p></div></div>
</div></div></div></div></div><div data-element-id="elm_MrzO9Mu2yvjD1yOveoN1ag" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="4. What are callback functions?" data-content-id="elm_VCfqx-I0okQtrLLtQgg6uQ" style="margin-top:0;" tabindex="0" role="button" aria-label="4. What are callback functions?"><span class="zpaccordion-name">4. What are callback functions?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_VCfqx-I0okQtrLLtQgg6uQ" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_83IdZWSoCFzucCnLahu5cw" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_lHAb9U1G1dgp1V6c444ATQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_Q-zMCoK5NRejxdtEjZeb0g" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p style="color:rgb(0, 0, 0);"></p><div><p style="color:rgb(0, 0, 0);"></p><div><p style="color:rgb(0, 0, 0);"></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p>Functions passed as arguments to other functions, commonly used in asynchronous tasks.</p></div><p></p></div><p></p></div><p style="color:rgb(0, 0, 0);"></p></div><p style="color:rgb(0, 0, 0);"></p></div><p style="color:rgb(0, 0, 0);"></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div>
</div></div></div></div></div><div data-element-id="elm_tbTU4vUzVyHxec4fh5treA" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="5. Where are methods used in LWC?" data-content-id="elm_ytAT6ZF-UgNskNSKR7FuZQ" style="margin-top:0;" tabindex="0" role="button" aria-label="5. Where are methods used in LWC?"><span class="zpaccordion-name">5. Where are methods used in LWC?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_ytAT6ZF-UgNskNSKR7FuZQ" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_I_fDz0ybSUu9nfzEuPrMMg" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_LJZ6EEKHjUSNa8ZMVwDadw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_zjpsXejtTlBuGOWTiUljMA" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><div><span style="color:rgb(0, 0, 0);">Inside classes, event handling, Apex result processing, and component logic.</span></div></div>
</div></div></div></div></div></div></div><div data-element-id="elm_8m4TfeROM6fQN9AHueEupg" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p><span style="font-family:Poppins, sans-serif;font-size:40px;font-weight:600;color:rgb(0, 0, 0);">Conclusion</span></p><div><div><span style="color:rgb(0, 0, 0);"><strong></strong></span></div><div><p></p></div>
</div><div><p></p><div><section><p></p></section></div></div><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p><div><p></p><div><p></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p><div><p></p><div><p></p><div><p></p><div><p></p></div></div></div></div></div></div></div></div></div><div><p></p><div><p></p><div><span style="color:rgb(0, 0, 0);">Objects are the backbone of JavaScript and essential for building powerful applications in Lightning Web Components. Once you understand how objects work, handling Apex data, events, and component communication becomes much easier.</span><div><span style="color:rgb(0, 0, 0);"><br/></span></div></div></div></div>
</div></div></div><p></p><div><div><h2></h2></div><div><div><h2><span style="color:rgb(0, 0, 0);">More SFDC Resources</span></h2></div><span style="color:rgb(0, 0, 0);"><br/></span><div><span style="font-style:italic;color:rgb(0, 0, 0);"><p>Start your SFMC journey today — join our&nbsp;<strong><a href="https://www.peoplewoo.com/" target="_blank" rel="">Live Training</a></strong>&nbsp;</p><p>Need help? Chat with us on&nbsp;<strong><a href="https://wa.me/%2B917875494672" rel="">WhatsApp</a></strong>&nbsp;anytime.</p><p>Learn. Practice. Get Certified. Succeed with&nbsp;<strong><a href="https://www.youtube.com/%40peoplewoo" target="_blank" rel="">Peoplewoo Skills</a></strong><a href="https://www.youtube.com/redirect?event=video_description&amp;redir_token=QUFFLUhqbUhyQUhpemJaOGZXR1RFRmxub3lNZlR4QW43QXxBQ3Jtc0ttMFhRMWtISFBVdlhJYlNab3NZS0hRd0RrQ0hwaTNGVEVhX2hVWUo3TktGN3VGa2FIWWtsQ1QtM0wxWG1ud0ZEeG02OG1CU3ZvVkE3ekNUUjZoaWFxZmhsUHNMR2diOEl5Wm5ROEpiUTVJSkJfQjF1MA&amp;q=https%3A%2F%2Fchat.whatsapp.com%2FKGLPRc9tofo0oiyd9oQW4E&amp;v=d_fgnADOmiQ" target="_blank" rel="">.</a></p></span></div></div><div><span style="font-style:italic;color:rgb(0, 0, 0);"><p><a href="https://www.youtube.com/%40peoplewoo" rel=""></a></p></span></div>
</div><p></p></div><p></p></div></div></div><div data-element-id="elm_KnMYXjQPWbIKC85JEm98qw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-4 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div class="zpelement zpelem-newsletter " data-list-id="" data-integ-type="" data-element-id="elm_eV_tPTfOVvRvGG8gHurC3Q" data-element-type="newsletter"><style type="text/css"></style><div class="zpnewsletter-container zpnewsletter-style-01 "><h2 class="zpheading zpheading-align-center zpnewsletter-heading" data-editor="true">Subscribe to our newsletter</h2><p class="zptext zptext-align-center zpnewsletter-desc" data-editor="true"> Stay informed about our latest updates through email. Subscribe here.</p><form class="zpform-container zpnewsletter-input-container"><label for="Email_elm_eV_tPTfOVvRvGG8gHurC3Q" class="zs-visually-hidden">Email</label><input type="text" id="Email_elm_eV_tPTfOVvRvGG8gHurC3Q" name="email" placeholder="Email" class="zpnewsletter-email-input-field"/><button type="submit" class="zpbutton zpnewsletter-button zpbutton-type-primary zpbutton-size-md">Subscribe</button></form></div>
</div><div data-element-id="elm_3-a_z2EN2Rdvo4WVGz-Y1Q" itemscope="" data-element-type="socialprofile" class="zpelement zpelem-socialprofile" data-element-id="elm_3-a_z2EN2Rdvo4WVGz-Y1Q"><style type="text/css"></style><div data-socialprofile_container class="zpsocialprofile-container zpsocialprofile-size-md zpsocialprofile-halign-center zpsocialprofile-align-mobile-center zpsocialprofile-align-tablet-center zpsocialprofile-style-none zpsocialprofile-type-color "><a href="https://www.linkedin.com/company/peoplewoo" class="zpsocialprofile-wrapper zpsocialprofile-linkedin" target="_blank" aria-label="LinkedIn"><svg aria-hidden="true" class="zpsocialprofile" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><path d="M64 4.706v54.588A4.706 4.706 0 0 1 59.294 64H4.706A4.706 4.706 0 0 1 0 59.294V4.706A4.706 4.706 0 0 1 4.706 0h54.588A4.706 4.706 0 0 1 64 4.706zM18.824 24.47H9.412v30.117h9.412V24.471zm.847-10.353a5.421 5.421 0 0 0-5.384-5.46h-.17a5.459 5.459 0 0 0 0 10.918 5.421 5.421 0 0 0 5.554-5.289v-.17zm34.917 22.174c0-9.054-5.76-12.574-11.482-12.574a10.73 10.73 0 0 0-9.525 4.856h-.263v-4.103H24.47v30.117h9.411V38.57a6.25 6.25 0 0 1 5.647-6.738h.358c2.993 0 5.214 1.882 5.214 6.625v16.132h9.412l.075-18.296z"/></svg></a><a href="https://www.youtube.com/@peoplewoo" class="zpsocialprofile-wrapper zpsocialprofile-youtube" target="_blank" aria-label="YouTube"><svg aria-hidden="true" class="zpsocialprofile" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><path d="M32.786 10l.106.001.392.002c1.94.009 6.896.05 11.873.237l.765.03c4.589.187 9.063.504 11.068 1.04 2.71.73 4.84 2.86 5.56 5.56 1.204 4.505 1.301 13.515 1.31 14.939v.382c-.009 1.424-.106 10.434-1.31 14.939a7.885 7.885 0 0 1-5.56 5.56c-4.455 1.19-21.107 1.3-24.098 1.309h-.923c-2.99-.01-19.635-.118-24.099-1.309a7.885 7.885 0 0 1-5.56-5.56c-.401-1.502-.68-3.504-.873-5.559l-.058-.65c-.314-3.688-.368-7.394-.377-8.552L1 32.124v-.194-.054l.002-.245c.009-1.158.063-4.864.377-8.552l.058-.65c.193-2.055.472-4.057.873-5.559a7.885 7.885 0 0 1 5.56-5.56c4.296-1.146 19.878-1.29 23.706-1.307L31.97 10h.105zM26.15 22.57v18.86L42.48 32l-16.33-9.43z"/></svg></a><a href="https://www.instagram.com/peoplewoo_consulting/" class="zpsocialprofile-wrapper zpsocialprofile-instagram" target="_blank" aria-label="Instagram"><svg aria-hidden="true" class="zpsocialprofile" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient x1="72.5875139%" y1="0%" x2="28.281045%" y2="106.524963%" id="linearGradient-1"><stop stop-color="#9A1DF1" offset="0%"></stop><stop stop-color="#ED1E64" offset="49.3618943%"></stop><stop stop-color="#FFD002" offset="100%"></stop></linearGradient><path d="M18.7470755,0.221595251 C15.3422244,0.382299247 13.0166948,0.927668835 10.9845413,1.72394402 C8.8808805,2.5440464 7.09761014,3.64310557 5.32364538,5.42434073 C3.54758782,7.20661909 2.45687425,8.99304465 1.64301187,11.0988238 C0.855031083,13.1361614 0.321066295,15.4627981 0.170711099,18.8697484 C0.0214311023,22.2829708 -0.012802497,23.3716107 0.00383750267,32.0611721 C0.0204135023,40.7496967 0.0587623014,41.8403975 0.221527098,45.254631 C0.384285494,48.6585158 0.927619882,50.9830597 1.72388866,53.0162565 C2.54502785,55.1199428 3.64296062,56.9022276 5.42521338,58.6772547 C7.20645494,60.4522883 8.9939045,61.5419779 11.1006629,62.3569282 C13.1359204,63.1438722 15.46353,63.6799042 18.8694627,63.8291842 C22.2826082,63.9795458 23.3722466,64.0127042 32.0596384,63.9961282 C40.7511454,63.9795458 41.8408478,63.941165 45.2539933,63.7794178 C48.6588444,63.616653 50.9822875,63.0712898 53.0165275,62.2770946 C55.1201883,61.4538563 56.9034586,60.3579395 58.6774234,58.5756547 C60.4513945,56.7943876 61.5421081,55.0069188 62.3560345,52.9001285 C63.1440153,50.8648453 63.6800089,48.5372038 63.8282777,45.1333446 C63.9775577,41.7180679 64.0128665,40.6273351 63.9962265,31.9388169 C63.9796441,23.2492555 63.9402841,22.1606092 63.7785369,18.7484684 C63.6167897,15.3414861 63.0714329,13.0179854 62.2761753,10.9837454 C61.4540249,8.88005905 60.3571033,7.0987919 58.5758618,5.32274074 C56.7946202,3.54875038 55.0071771,2.4559312 52.9004123,1.64411682 C50.8641371,0.856129637 48.5375324,0.319048049 45.1316061,0.171822452 C41.7184606,0.0204496555 40.6288222,-0.0127087437 31.9383264,0.00387365592 C23.2499298,0.0204560555 22.160285,0.0577936547 18.7470755,0.221595251 M19.1203747,58.0696835 C16.0006051,57.9338499 14.3064996,57.4154436 13.1774308,56.9810372 C11.682346,56.4024772 10.6154853,55.7088452 9.49261809,54.5942852 C8.37184371,53.4755524 7.67612533,52.4117765 7.09241974,50.9198021 C6.65381495,49.7906885 6.12611576,48.0986182 5.97993337,44.9788358 C5.82129017,41.6060871 5.78502777,40.5941383 5.76945657,32.0497481 C5.75287417,23.5074443 5.78394617,22.4954955 5.93120377,19.1196428 C6.06491897,16.0019213 6.58648055,14.3057037 7.01983094,13.1776334 C7.59834613,11.6804686 8.28988531,10.6156558 9.40655089,9.49280784 C10.5252389,8.36992787 11.5889956,7.67628948 13.081994,7.0925775 C14.2100452,6.65191191 15.9021283,6.12831512 19.0208227,5.98007832 C22.3956194,5.82038552 23.4064738,5.78618392 31.9486944,5.76960153 C40.4929438,5.75298713 41.5048734,5.78307992 44.8807453,5.93134872 C47.9983644,6.06715032 49.6945564,6.58350231 50.8216028,7.0199951 C52.3176987,7.59852308 53.3845595,8.28801427 54.5064091,9.40674704 C55.628201,10.5254798 56.323913,11.5871694 56.9076186,13.0832846 C57.3482458,14.2082189 57.8718362,15.9023821 58.0190938,19.0201036 C58.1797594,22.3949387 58.2160858,23.4068555 58.231593,31.9491913 C58.2481754,40.4935879 58.2171034,41.5054983 58.0688346,44.8792902 C57.933033,47.9990726 57.4156442,49.6942725 56.9802074,50.8243973 C56.4016858,52.3184581 55.710089,53.3853316 54.5924123,54.5082116 C53.4747995,55.6269444 52.4110427,56.3246916 50.9169691,56.9084356 C49.7910044,57.348026 48.0968988,57.8726723 44.9802333,58.0209411 C41.6055006,58.1795587 40.5945822,58.2158467 32.0492576,58.2314179 C23.507037,58.2480131 22.4961826,58.2158659 19.1203747,58.0696835 M45.2073489,14.8946189 C45.2114717,17.0138765 46.9346204,18.729806 49.053846,18.7256663 C51.1740891,18.7215116 52.8900251,16.9993549 52.8869253,14.8800973 C52.8827483,12.7608398 51.1595931,11.043899 49.03935,11.0480387 C46.9191132,11.052187 45.2031773,12.7753614 45.2073489,14.8946189 M15.5693094,32.0310857 C15.5869347,41.1063495 22.957565,48.4469894 32.0305952,48.4293954 C41.1046942,48.4117446 48.4493852,41.0430983 48.4318231,31.9678665 C48.414134,22.8957323 41.0424926,15.5509133 31.967376,15.5685072 C22.8942818,15.5861645 15.5516836,22.9579403 15.5693094,32.0310857 M21.3328633,32.0196937 C21.3225058,26.1295435 26.0897377,21.344654 31.978768,21.3342528 C37.868867,21.3228812 42.6547101,26.0880651 42.6661227,31.9792585 C42.6775581,37.870452 37.9103198,42.6542983 32.0192032,42.6657427 C26.1301793,42.6771143 21.3442722,37.9108872 21.3328633,32.0196937" id="path-2"></path></defs><g stroke="none" stroke-width="1" fill-rule="evenodd"><mask fill="white"><use xlink:href="#path-2"></use></mask><use class="cl-path-inherit" fill="url(#linearGradient-1)" xlink:href="#path-2"></use></g></svg></a><a href="https://wa.me/+917875494672" class="zpsocialprofile-wrapper zpsocialprofile-whatsapp" target="_blank" aria-label="WhatsApp"><svg aria-hidden="true" class="zpsocialprofile" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><defs><linearGradient x1="49.9999983%" y1="100%" x2="49.9999983%" y2="0.00237659529%" id="wtlinearGradient-1"><stop stop-color="#F9F9F9" offset="0%"></stop><stop stop-color="#FFFFFF" offset="100%"></stop></linearGradient></defs><g stroke="none" stroke-width="1" fill-rule="evenodd"><g fill-rule="nonzero"><path class="cl-path-transparent" d="M1.10771574,62.8926967 L5.4728797,47.0284478 C2.78074848,42.3847708 1.36440022,37.1174751 1.3659281,31.7224137 C1.37356752,14.8421228 15.1734138,1.1088243 32.1283401,1.1088243 C40.3575222,1.11186634 48.0825026,4.30144735 53.8884609,10.0874112 C59.6974751,15.873375 62.8938079,23.5651781 62.8907543,31.745229 C62.8831127,48.6255199 49.0832664,62.3603394 32.1283401,62.3603394 C32.1283401,62.3603394 32.1283401,62.3603394 32.1283401,62.3603394 L32.1145892,62.3603394 C26.9656208,62.3588184 21.9067976,61.0720346 17.4148193,58.633838 L1.10618786,62.8911757 L1.10771574,62.8926967 Z" fill="#25D266"></path><path class="cl-path-inherit" d="M32.1344517,0 C40.6585153,0.00304204197 48.6585147,3.30669962 54.6753211,9.30104333 C60.6905995,15.295387 64.0030515,23.264016 64,31.7376239 C63.9924328,49.0469187 49.9804471,63.1660029 32.660306,63.4466537 L32.1344517,63.4509114 L32.1344517,63.4509114 L32.1207007,63.4509114 C26.7883863,63.4493904 21.5477449,62.116976 16.893811,59.5905602 L0.00152788378,64 L0,64 L4.52100811,47.5668893 C1.73262021,42.7574209 0.265851778,37.3015186 0.267379662,31.7117665 C0.27501908,14.2261093 14.5683718,0 32.1344517,0 Z M32.143619,5.35703591 C17.5339943,5.35703591 5.65316999,17.179932 5.6470572,31.7132875 C5.64553057,36.6931103 7.04507211,41.5436462 9.69595047,45.7401431 L10.3269665,46.7379328 L7.65011409,56.464862 L17.6745596,53.8487059 L17.6760875,53.8487059 L18.6432379,54.4190888 C22.7089366,56.8207809 27.37051,58.0908335 32.1237565,58.0938755 L32.1344517,58.0938755 C46.7318533,58.0938755 58.6142055,46.2694584 58.6203176,31.7345818 C58.6218449,24.6907337 55.8701262,18.0682083 50.8693626,13.0868646 C45.868599,8.10552083 39.2192487,5.36007795 32.143619,5.35703591 Z M20.8510299,17.0688705 C21.3827335,17.0688705 21.9129092,17.0673765 22.3773858,17.0871497 C22.9457586,17.1099651 23.5737188,17.1358224 24.1695935,18.4560686 L24.1695935,18.4560686 C24.8785316,20.0242413 26.4262779,23.9439124 26.6249028,24.3408988 C26.8235276,24.7378853 26.9564535,25.2002757 26.6906018,25.729591 C26.42475,26.2589063 26.2918241,26.5889678 25.8945743,27.0513582 C25.4957966,27.5152696 25.057294,28.0856525 24.6997692,28.4400504 C24.2994636,28.8339948 23.8854071,29.2644438 24.3498838,30.0568957 C24.8143605,30.8508686 26.4125269,33.4457304 28.7792189,35.5462604 C31.8212355,38.2460727 34.3865524,39.0826342 35.1825798,39.4796207 C35.9786073,39.8766072 36.4430839,39.8096822 36.9075606,39.2803669 C37.3720373,38.7525727 38.8983932,36.966894 39.4285688,36.1744421 C39.9602724,35.3804691 40.4904481,35.512798 41.2207765,35.7774556 C41.9511049,36.0405922 45.8655432,37.9585997 46.6615706,38.3555862 C47.4575981,38.7525727 47.9893016,38.9503054 48.1879265,39.2803669 C48.3865514,39.6119495 48.3865514,41.1983744 47.7234499,43.0494569 C47.0588204,44.9005395 43.8090116,46.6846971 42.3483547,46.8170259 C42.2952399,46.8218379 42.2422464,46.8271688 42.189112,46.8328475 L42.0290247,46.850756 C40.6602396,47.0089406 39.0295689,47.2820712 32.7929696,44.8336146 C24.6997692,41.6562017 19.5905258,33.3970578 19.1917482,32.8692635 C18.7944984,32.3399482 15.9404115,28.5708582 15.9404115,24.6709604 C15.9404115,20.7710626 17.996943,18.8530551 18.7272715,18.0606032 C19.4575999,17.2681512 20.3193264,17.0688705 20.8510299,17.0688705 Z" fill="url(#wtlinearGradient-1)"></path></g></g></svg></a></div>
</div></div></div></div></div></div> ]]></content:encoded><pubDate>Mon, 24 Nov 2025 19:03:48 +0530</pubDate></item><item><title><![CDATA[Object in JavaScript | LWC Tutorial for Beginners | Peoplewoo Skills]]></title><link>https://www.peoplewoo.com/blogs/post/object-in-javascript-lwc-tutorial-for-beginners-peoplewoo-skills</link><description><![CDATA[ Objects are one of the most important concepts in JavaScript, and understanding them is essential for working with&nbsp; Lightning Web Components (LWC ]]></description><content:encoded><![CDATA[<div class="zpcontent-container blogpost-container "><div data-element-id="elm_VSFK6u_qTROrUlbkwFcnHQ" data-element-type="section" class="zpsection "><style type="text/css"></style><div class="zpcontainer-fluid zpcontainer"><div data-element-id="elm_AX1H_FWwTISZjTAoLhORpg" data-element-type="row" class="zprow zprow-container zpalign-items- zpjustify-content- " data-equal-column=""><style type="text/css"></style><div data-element-id="elm_QmO3R2StSMOPjvWG4mBR2w" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-8 zpcol-sm-12 zpalign-self- "><style type="text/css"></style><div data-element-id="elm_zt8AQ9V5TPuN5ANXWKA81A" data-element-type="image" class="zpelement zpelem-image "><style> @media (min-width: 992px) { [data-element-id="elm_zt8AQ9V5TPuN5ANXWKA81A"] .zpimage-container figure img { width: 730px ; height: 677.66px ; } } </style><div data-caption-color="" data-size-tablet="" data-size-mobile="" data-align="center" data-tablet-image-separate="false" data-mobile-image-separate="false" class="zpimage-container zpimage-align-center zpimage-tablet-align-center zpimage-mobile-align-center zpimage-size-fit zpimage-tablet-fallback-fit zpimage-mobile-fallback-fit hb-lightbox " data-lightbox-options="
                type:fullscreen,
                theme:dark"><figure role="none" class="zpimage-data-ref"><span class="zpimage-anchor" role="link" tabindex="0" aria-label="Open Lightbox" style="cursor:pointer;"><picture><img class="zpimage zpimage-style-none zpimage-space-none " src="/Group%20300.png" size="fit" data-lightbox="true"/></picture></span></figure></div>
</div><div data-element-id="elm_pfjc3-aGJQ56E4Rt5J6YrA" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><section><p><span style="color:rgb(0, 0, 0);"></span></p></section><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p></div>
<div><p></p><div><header><p></p><div><section><p><span style="color:rgb(0, 0, 0);"></span></p></section><div><p></p><div><section><p><span style="color:rgb(0, 0, 0);"></span></p></section><div><section><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p><span style="color:rgb(0, 0, 0);">Objects are one of the most important concepts in JavaScript, and understanding them is essential for working with&nbsp;<strong>Lightning Web Components (LWC)</strong></span></p><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">What Is an Object in JavaScript?</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);">An&nbsp;<strong>object</strong>&nbsp;in JavaScript is a collection of key-value pairs. Each key is called a&nbsp;<strong>property</strong>, and the value can be anything: string, number, array, function, or even another object.</span></p><h3><span style="color:rgb(0, 0, 0);"><br/></span></h3><h3><span style="color:rgb(0, 0, 0);">Example:</span></h3><pre><span style="color:rgb(0, 0, 0);"> const user = {     firstName: &quot;John&quot;,     lastName: &quot;Doe&quot;,     age: 28 }; </span></pre><p><span style="color:rgb(0, 0, 0);">Objects help organize and structure data in a readable and efficient way.</span></p></div><p></p></div><p></p></div><p></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p></section></div></div></div></div></header></div><p></p><p></p><div><h2><span style="color:rgb(0, 0, 0);">Watch Our Video Tutorial</span></h2></div>
<p></p></div><section><div><h2><span style="color:rgb(0, 0, 0);"></span></h2></div>
<p></p></section></div><p></p></div></div><div data-element-id="elm_nO9fotRMX3oRU7F5VOdZig" data-element-type="video" class="zpelement zpelem-video "><style type="text/css"> @media (max-width: 767px) { [data-element-id="elm_nO9fotRMX3oRU7F5VOdZig"].zpelem-video iframe.zpvideo{ width:560px !important; height:315px !important; } } @media all and (min-width: 768px) and (max-width:991px){ [data-element-id="elm_nO9fotRMX3oRU7F5VOdZig"].zpelem-video iframe.zpvideo{ width:560px !important; height:315px !important; } } </style><div class="zpvideo-container zpiframe-align-left zpiframe-mobile-align-center zpiframe-tablet-align-center"><iframe class="zpvideo " width="2000" height="315" src="//www.youtube.com/embed/kz-xjwQ6WSs?enablejsapi=1" frameborder="0" allowfullscreen id=youtube-video-1 data-api=youtube></iframe></div>
</div><div data-element-id="elm_QlHXRdluq-pxYjAQryfSiQ" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><section><p></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h2><span style="color:rgb(0, 0, 0);">Why Objects Are Important in LWC?</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><ul><li><span style="color:rgb(0, 0, 0);">API data returned from Apex is always an object.</span></li><li><span style="color:rgb(0, 0, 0);">Events in LWC pass objects through <code>detail</code>.</span></li><li><span style="color:rgb(0, 0, 0);">Tracked properties often store objects.</span></li><li><span style="color:rgb(0, 0, 0);">JSON responses are parsed into objects.</span></li><li><span style="color:rgb(0, 0, 0);">LWC components use object structures for configuration and rendering.</span></li></ul><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">How to Create an Object in JavaScript?</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><h3><span style="color:rgb(0, 0, 0);">1. Object Literal (Most Common)</span></h3><pre><span style="color:rgb(0, 0, 0);"> const car = {     brand: &quot;Tesla&quot;,     model: &quot;Model 3&quot;,     price: 45000 }; </span></pre><pre><span style="color:rgb(0, 0, 0);"><br/></span></pre><h3><span style="color:rgb(0, 0, 0);">2. Using new Object()</span></h3><pre><span style="color:rgb(0, 0, 0);"> const person = new Object(); person.name = &quot;Amit&quot;; person.country = &quot;India&quot;; </span></pre><pre><span style="color:rgb(0, 0, 0);"><br/></span></pre><h3><span style="color:rgb(0, 0, 0);">3. Using Constructor Function</span></h3><pre><span style="color:rgb(0, 0, 0);"> function Student(name, course) {    this.name = name;    this.course = course; }</span></pre><pre><span style="color:rgb(0, 0, 0);"> const s1 = new Student(&quot;Rahul&quot;, &quot;Salesforce&quot;); </span></pre><pre><span style="color:rgb(0, 0, 0);"><br/></span></pre><h3><span style="color:rgb(0, 0, 0);">4. Using Classes (Recommended in LWC)</span></h3><pre><span style="color:rgb(0, 0, 0);"> class Employee {     constructor(name, dept) {         this.name = name;   </span></pre><pre><span style="color:rgb(0, 0, 0);">      this.dept = dept;     } } const emp = new Employee(&quot;Priya&quot;, &quot;IT&quot;); </span></pre><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">Accessing Object Properties</span></h2><h3><span style="color:rgb(0, 0, 0);">1. Dot Notation</span></h3><pre><span style="color:rgb(0, 0, 0);"> console.log(user.firstName); </span></pre><pre><span style="color:rgb(0, 0, 0);"><br/></span></pre><h3><span style="color:rgb(0, 0, 0);">2. Bracket Notation</span></h3><pre><span style="color:rgb(0, 0, 0);"> console.log(user[&quot;lastName&quot;]); </span></pre><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">Modifying Object Properties</span></h2><pre><span style="color:rgb(0, 0, 0);"> user.age = 30;           // Update value user.email = &quot;john@x.com&quot;;</span></pre><pre><span style="color:rgb(0, 0, 0);">  // Add new property delete user.lastName;     // Remove property </span></pre><pre><span style="color:rgb(0, 0, 0);"><br/></span></pre><h2><span style="color:rgb(0, 0, 0);">Nested Objects</span></h2><p><span style="color:rgb(0, 0, 0);">Objects can contain other objects.</span></p><pre><span style="color:rgb(0, 0, 0);"> const account = {    name: &quot;ABC Corp&quot;,    contact:</span></pre><pre><span style="color:rgb(0, 0, 0);"> {        phone: &quot;9876543210&quot;,        city: &quot;Pune&quot;    } }; </span></pre><pre><span style="color:rgb(0, 0, 0);">console.log(account.contact.city);  </span></pre><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">Objects in LWC Real-Life Example</span></h2><h3><span style="color:rgb(0, 0, 0);">Example: Handling Apex Response</span></h3><pre><span style="color:rgb(0, 0, 0);"> @track userDetails; connectedCallback() {     getUserInfo()      </span></pre><pre><span style="color:rgb(0, 0, 0);">   .then(result =&gt; {             console.log(result.name);     </span></pre><pre><span style="color:rgb(0, 0, 0);">  this.userDetails = result;  // result is an object         }); } </span></pre><pre><span style="color:rgb(0, 0, 0);"><br/></span></pre><h3><span style="color:rgb(0, 0, 0);">Example: Passing Data in Events</span></h3><pre><span style="color:rgb(0, 0, 0);"> const event = new CustomEvent('senddata', {     detail: {       </span></pre><pre><span style="color:rgb(0, 0, 0);">  id: 101,         name: &quot;Amit&quot;     } }); this.dispatchEvent(event); </span></pre><pre></pre><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h2><span style="color:rgb(0, 0, 0);">Common Object Methods</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><table border="1" cellpadding="8" cellspacing="0"><tbody><tr><th><span style="color:rgb(0, 0, 0);">Method</span></th><th><span style="color:rgb(0, 0, 0);">Description</span></th></tr><tr><td><span style="color:rgb(0, 0, 0);">Object.keys(obj)</span></td><td><span style="color:rgb(0, 0, 0);">Returns array of all keys</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">Object.values(obj)</span></td><td><span style="color:rgb(0, 0, 0);">Returns array of all values</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">Object.entries(obj)</span></td><td><span style="color:rgb(0, 0, 0);">Returns array of key-value pairs</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">Object.freeze(obj)</span></td><td><span style="color:rgb(0, 0, 0);">Makes object immutable</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">Object.assign(target, source)</span></td><td><span style="color:rgb(0, 0, 0);">Copies properties from one object to another</span></td></tr></tbody></table><hr/><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h2><span style="color:rgb(0, 0, 0);">Best Practices for Using Objects in LWC</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><ul><li><span style="color:rgb(0, 0, 0);">Always initialize objects to avoid undefined errors.</span></li><li><span style="color:rgb(0, 0, 0);">Use <code>Object.freeze()</code> for constant data.</span></li><li><span style="color:rgb(0, 0, 0);">Use classes when creating object templates.</span></li><li><span style="color:rgb(0, 0, 0);">Avoid deeply nested objects (hard to track for reactivity).</span></li><li><span style="color:rgb(0, 0, 0);">Use <code>JSON.stringify()</code> to debug objects during development.</span></li></ul></section></div>
</div><div class="zpelement zpelem-carousel " data-element-id="elm_byTBvaroUVlqNQzB3l0WEQ" data-element-type="carousel" data-currentslide-index="0" data-transition="slide_left" data-zs-autoslide="false" data-zs-slider="min-height-el: zpcarousel-content-container;arrow-cont: zpcarousel-arrows-container; active-controller: zpcarousel-controller-active; controller-cont: zpcarousel-controller-container; controller: zpcarousel-controller; right-arrow: zpcarousel-arrow-right; left-arrow: zpcarousel-arrow-left;active-slide:zpcarousel-content-active; slide: zpcarousel-content; slides-cont: zpcarousel-content-container;content-cont : zpcarousel-content-inner; background: false;slide-pause-btn:zpcarousel-pause-btn;slide-play-btn:zpcarousel-play-btn;"><div class="zpcarousel-container zpcarousel-style-01"><style></style><div class="zpcarousel-content-container"><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_-dxt0NaImCeUb0jHYGM2Ow" data-slide-name="Slide 1"><div class="zpcarousel-content-inner"><div data-element-id="elm_4Jy8AFUbkHw4IXVthKXcwg" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_eO9573nNV2JPmlpkVUhEdg" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_SiJIPTsI0iZNgc4tajDCvw" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Dharmesh R.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>The explanations are clear, and the repetition really helps to reinforce the concepts. It covers everything in detail, from the basics to more advanced topics. The course includes in-depth examples that make complex ideas easy to understand. Overall, I’m really impressed and can’t wait to explore more!</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_NZnF622zgu6xIrpJo386_g" data-slide-name="Slide 2"><div class="zpcarousel-content-inner"><div data-element-id="elm_hHh-tqVupL3HL8KYT1kf9Q" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm__dSB6W4LHkpHg36wJiyBsw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_GHUL9IsOVpazUCwTJjdzMw" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Jermaine L.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>Taking this course like help me acquire all the knowledge and skills I need to excel and optimize my performance to fulfilling my operational duties in my current role as an email marketing specialist</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_v3u8hhd_AsZxORmwnoA_2g" data-slide-name="Slide 3"><div class="zpcarousel-content-inner"><div data-element-id="elm_DD4MpNQtMS1HKlrokaUzeA" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_k40UvPeZYpsuUJLZc3IAZw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_t0XTYi6tHJ5BJkc4CqF21g" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Sumit N.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>Awesome explanation. He keep repeating which helps to remind/refresh the concepts. Loved it</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_hy7Rbr8nliB0X9rRDa5aow" data-slide-name="Slide 4"><div class="zpcarousel-content-inner"><div data-element-id="elm_QL8Q-Kw-ITIb4l-A8xb-mA" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_OAbkKPefCMhNQsVayTvj2w" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_NgbzA5biiFsJ40IvZ4dfyg" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Varun V.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>It's a great course that covers everything you need to know. After almost finishing, I feel confident using the SDC platform. Definitely a 5-star experience!</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_aJlL0IwMmDJL1pq3VxCvig" data-slide-name="Slide 5"><div class="zpcarousel-content-inner"><div data-element-id="elm_WVzZlT8_Ygn-L_HvDcrbhA" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_nz3RpOWIfz2pKHIP8PmbXw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_cdESQ-gJxvN41XpT7ZaAkg" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Prajakta Nimba S.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>This course is perfect for anyone looking to build a solid foundation in Salesforce Data Cloud. The content is well-structured, easy to follow, and packed with real-world examples that make the concepts practical</span></span></p></div>
</div></div></div></div></div></div></div><div class="zpcarousel-arrows-container zpcarousel-arrow-type-01" data-arrow-style="2"><div class="zpcarousel-arrow-left" tabindex="0" role="button" aria-label="Previous"><svg aria-hidden="true" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" class="svg-icon-18px"><path d="M0,16c0,0.3,0.1,0.5,0.3,0.7l9.9,10c0.4,0.4,1,0.4,1.4,0c0.4-0.4,0.4-1,0-1.4L3.4,17H31 c0.6,0,1-0.5,1-1s-0.4-1-1-1H3.4l8.2-8.3c0.4-0.4,0.4-1,0-1.4c-0.4-0.4-1-0.4-1.4,0l-9.9,10C0.1,15.5,0,15.7,0,16z"></path></svg></div>
<div class="zpcarousel-arrow-right" tabindex="0" role="button" aria-label="Next"><svg aria-hidden="true" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" class="svg-icon-18px"><path id="arrow-right-style2-Arrow_Forward" d="M32,16c0-0.3-0.1-0.5-0.3-0.7l-9.9-10c-0.4-0.4-1-0.4-1.4,0c-0.4,0.4-0.4,1,0,1.4 l8.2,8.3H1c-0.6,0-1,0.5-1,1s0.4,1,1,1h27.6l-8.2,8.3c-0.4,0.4-0.4,1,0,1.4c0.4,0.4,1,0.4,1.4,0l9.9-10C31.9,16.5,32,16.3,32,16z"></path></svg></div>
</div><div class="zpcarousel-controller-container zpcarousel-controller-type-01"><div class="zpcarousel-controller zpcarousel-controller-active" data-slide-index="0"></div>
<div class="zpcarousel-controller " data-slide-index="1"></div><div class="zpcarousel-controller " data-slide-index="2"></div>
<div class="zpcarousel-controller " data-slide-index="3"></div><div class="zpcarousel-controller " data-slide-index="4"></div>
</div></div></div><div data-element-id="elm_Vu-0h7FBeerqTMPmZaWlug" data-element-type="heading" class="zpelement zpelem-heading "><style></style><h2
 class="zpheading zpheading-style-none zpheading-align-left zpheading-align-mobile-left zpheading-align-tablet-left " data-editor="true"><span><span style="color:rgb(0, 0, 0);">Frequently Asked Questions (FAQ)</span><br/></span></h2></div>
<div data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA" data-element-type="accordion" class="zpelement zpelem-accordion " data-tabs-inactive="false" data-icon-style="1"><style> [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion, [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content{ border-style:solid; border-color: !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content.zpaccordion-active-content:last-of-type{ border-block-end-width:1px !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion.zpaccordion-active + .zpaccordion-content{ border-block-start-color: transparent !important; } @media all and (min-width: 768px) and (max-width:991px){ [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion, [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content{ border-style:solid; border-color: !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content:last-of-type{ border-block-end-width:1px !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion.zpaccordion-active + .zpaccordion-content{ border-block-start-color: transparent !important; } } @media all and (max-width:767px){ [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion, [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content{ border-style:solid; border-color: !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content:last-of-type{ border-block-end-width:1px !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion.zpaccordion-active + .zpaccordion-content{ border-block-start-color: transparent !important; } } </style><div class="zpaccordion-container zpaccordion-style-01 zpaccordion-with-icon zpaccord-svg-icon-1 zpaccordion-icon-align-left "><div data-element-id="elm_avqPnRbxn96EwANShYaFjg" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="1. Is null equal to undefined?" data-content-id="elm_X8MB5lkAUEcGoYBtGrpljg" style="margin-top:0;" tabindex="0" role="button" aria-label="1. Is null equal to undefined?"><span class="zpaccordion-name">1. Is null equal to undefined?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_X8MB5lkAUEcGoYBtGrpljg" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_u5Cj1v0VUadpxrxv948nyw" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_7ezNrxV4FkYz7RGU1G0BtQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_hae4_dzBKBBmMQbSfRCyug" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p><strong style="color:rgb(0, 0, 0);"></strong></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><div><div><p><span style="color:rgb(0, 0, 0);"><span></span></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);">Yes,&nbsp;<code>null == undefined</code>&nbsp;returns true due to type coercion, but&nbsp;<code>null === undefined</code>&nbsp;returns false.</span></p></div><p></p></div><p></p></div><p></p></div></div></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div>
</div></div></div></div></div><div data-element-id="elm_2U5i1G2PT4th-0HwQ_qYMg" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="2. Which operator should I use in LWC?" data-content-id="elm_HWiLrHq626LLO7HEwZZO0A" style="margin-top:0;" tabindex="0" role="button" aria-label="2. Which operator should I use in LWC?"><span class="zpaccordion-name">2. Which operator should I use in LWC?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_HWiLrHq626LLO7HEwZZO0A" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_EsUHLPDiEOSRoxW1Va1vSQ" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_e_hMh4qQPANv9Gq71QOCbQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_yDDgYpCDh88L_B4yVqVDpw" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><div><span style="color:rgb(0, 0, 0);"><div><p><span></span></p><div><p></p><div><p></p><div><p>Always use&nbsp;<strong>===</strong>&nbsp;for strict comparisons to avoid unexpected results.</p></div><p></p></div><p></p></div></div></span><p></p></div></div></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div></div></div></div></div></div></div>
</div></div></div></div></div><div data-element-id="elm_z819rp9QtsimO7OBe5fUQQ" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="3. When should I use null?" data-content-id="elm_G0J2WJbaranPy8N5RGud_Q" style="margin-top:0;" tabindex="0" role="button" aria-label="3. When should I use null?"><span class="zpaccordion-name">3. When should I use null?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_G0J2WJbaranPy8N5RGud_Q" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_NLdjpQsYYYsfKNQ4rWhxJg" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_mCo9PctebWjYnQx_burGTQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_PUMBoTZ3jG3CqnmnOda7FA" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);">Use&nbsp;<code>null</code>&nbsp;when intentionally clearing or resetting a variable.</span></p></div><p></p></div><p></p></div></div>
</div></div></div></div></div><div data-element-id="elm_MrzO9Mu2yvjD1yOveoN1ag" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="4. Why does typeof null return &quot;object&quot;?" data-content-id="elm_VCfqx-I0okQtrLLtQgg6uQ" style="margin-top:0;" tabindex="0" role="button" aria-label="4. Why does typeof null return &quot;object&quot;?"><span class="zpaccordion-name">4. Why does typeof null return &quot;object&quot;?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_VCfqx-I0okQtrLLtQgg6uQ" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_83IdZWSoCFzucCnLahu5cw" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_lHAb9U1G1dgp1V6c444ATQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_Q-zMCoK5NRejxdtEjZeb0g" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p style="color:rgb(0, 0, 0);"></p><div><p style="color:rgb(0, 0, 0);"></p><div><p style="color:rgb(0, 0, 0);"></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);">It is a long-standing JavaScript bug preserved for backward compatibility. Though&nbsp;<code>null</code>&nbsp;is not an object, its type incorrectly returns &quot;object&quot;.</span></p></div><p></p></div><p style="color:rgb(0, 0, 0);"></p></div><p style="color:rgb(0, 0, 0);"></p></div><p style="color:rgb(0, 0, 0);"></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div>
</div></div></div></div></div><div data-element-id="elm_tbTU4vUzVyHxec4fh5treA" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="5. How do I check if a variable is null or undefined?" data-content-id="elm_ytAT6ZF-UgNskNSKR7FuZQ" style="margin-top:0;" tabindex="0" role="button" aria-label="5. How do I check if a variable is null or undefined?"><span class="zpaccordion-name">5. How do I check if a variable is null or undefined?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_ytAT6ZF-UgNskNSKR7FuZQ" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_I_fDz0ybSUu9nfzEuPrMMg" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_LJZ6EEKHjUSNa8ZMVwDadw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_zjpsXejtTlBuGOWTiUljMA" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><section><p><span style="color:rgb(0, 0, 0);"></span></p><div><main><section><p></p><div><div><section><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><strong style="color:rgb(0, 0, 0);"></strong><div><p><span style="color:rgb(0, 0, 0);">Use:</span></p><pre><span style="color:rgb(0, 0, 0);"> if (value == null) {    // value is either null or undefined } </span></pre></div></div><p></p></div><p></p></section></div></div><p></p></section></main></div><p></p></section><section></section></div>
</div></div></div></div></div></div></div><div data-element-id="elm_8m4TfeROM6fQN9AHueEupg" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p><span style="font-family:Poppins, sans-serif;font-size:40px;font-weight:600;color:rgb(0, 0, 0);">Conclusion</span></p><div><div><span style="color:rgb(0, 0, 0);"><strong></strong></span></div><div><p></p></div>
</div><div><p></p><div><section><p></p></section></div></div><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p><div><p></p><div><p></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p><div><p></p><div><p></p><div><p></p><div><p></p></div></div></div></div></div></div></div></div></div><div><p></p><div><p></p><div><span style="color:rgb(0, 0, 0);">Objects are the backbone of JavaScript and essential for building powerful applications in Lightning Web Components. Once you understand how objects work, handling Apex data, events, and component communication becomes much easier.</span><div><span style="color:rgb(0, 0, 0);"><br/></span></div></div></div></div>
</div></div></div><p></p><div><div><h2></h2></div><div><div><h2><span style="color:rgb(0, 0, 0);">More SFDC Resources</span></h2></div><span style="color:rgb(0, 0, 0);"><br/></span><div><span style="font-style:italic;color:rgb(0, 0, 0);"><p>Start your SFMC journey today — join our&nbsp;<strong><a href="https://www.peoplewoo.com/" target="_blank" rel="">Live Training</a></strong>&nbsp;</p><p>Need help? Chat with us on&nbsp;<strong><a href="https://wa.me/%2B917875494672" rel="">WhatsApp</a></strong>&nbsp;anytime.</p><p>Learn. Practice. Get Certified. Succeed with&nbsp;<strong><a href="https://www.youtube.com/%40peoplewoo" target="_blank" rel="">Peoplewoo Skills</a></strong><a href="https://www.youtube.com/redirect?event=video_description&amp;redir_token=QUFFLUhqbUhyQUhpemJaOGZXR1RFRmxub3lNZlR4QW43QXxBQ3Jtc0ttMFhRMWtISFBVdlhJYlNab3NZS0hRd0RrQ0hwaTNGVEVhX2hVWUo3TktGN3VGa2FIWWtsQ1QtM0wxWG1ud0ZEeG02OG1CU3ZvVkE3ekNUUjZoaWFxZmhsUHNMR2diOEl5Wm5ROEpiUTVJSkJfQjF1MA&amp;q=https%3A%2F%2Fchat.whatsapp.com%2FKGLPRc9tofo0oiyd9oQW4E&amp;v=d_fgnADOmiQ" target="_blank" rel="">.</a></p></span></div></div><div><span style="font-style:italic;color:rgb(0, 0, 0);"><p><a href="https://www.youtube.com/%40peoplewoo" rel=""></a></p></span></div>
</div><p></p></div><p></p></div></div></div><div data-element-id="elm_KnMYXjQPWbIKC85JEm98qw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-4 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div class="zpelement zpelem-newsletter " data-list-id="" data-integ-type="" data-element-id="elm_eV_tPTfOVvRvGG8gHurC3Q" data-element-type="newsletter"><style type="text/css"></style><div class="zpnewsletter-container zpnewsletter-style-01 "><h2 class="zpheading zpheading-align-center zpnewsletter-heading" data-editor="true">Subscribe to our newsletter</h2><p class="zptext zptext-align-center zpnewsletter-desc" data-editor="true"> Stay informed about our latest updates through email. Subscribe here.</p><form class="zpform-container zpnewsletter-input-container"><label for="Email_elm_eV_tPTfOVvRvGG8gHurC3Q" class="zs-visually-hidden">Email</label><input type="text" id="Email_elm_eV_tPTfOVvRvGG8gHurC3Q" name="email" placeholder="Email" class="zpnewsletter-email-input-field"/><button type="submit" class="zpbutton zpnewsletter-button zpbutton-type-primary zpbutton-size-md">Subscribe</button></form></div>
</div><div data-element-id="elm_3-a_z2EN2Rdvo4WVGz-Y1Q" itemscope="" data-element-type="socialprofile" class="zpelement zpelem-socialprofile" data-element-id="elm_3-a_z2EN2Rdvo4WVGz-Y1Q"><style type="text/css"></style><div data-socialprofile_container class="zpsocialprofile-container zpsocialprofile-size-md zpsocialprofile-halign-center zpsocialprofile-align-mobile-center zpsocialprofile-align-tablet-center zpsocialprofile-style-none zpsocialprofile-type-color "><a href="https://www.linkedin.com/company/peoplewoo" class="zpsocialprofile-wrapper zpsocialprofile-linkedin" target="_blank" aria-label="LinkedIn"><svg aria-hidden="true" class="zpsocialprofile" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><path d="M64 4.706v54.588A4.706 4.706 0 0 1 59.294 64H4.706A4.706 4.706 0 0 1 0 59.294V4.706A4.706 4.706 0 0 1 4.706 0h54.588A4.706 4.706 0 0 1 64 4.706zM18.824 24.47H9.412v30.117h9.412V24.471zm.847-10.353a5.421 5.421 0 0 0-5.384-5.46h-.17a5.459 5.459 0 0 0 0 10.918 5.421 5.421 0 0 0 5.554-5.289v-.17zm34.917 22.174c0-9.054-5.76-12.574-11.482-12.574a10.73 10.73 0 0 0-9.525 4.856h-.263v-4.103H24.47v30.117h9.411V38.57a6.25 6.25 0 0 1 5.647-6.738h.358c2.993 0 5.214 1.882 5.214 6.625v16.132h9.412l.075-18.296z"/></svg></a><a href="https://www.youtube.com/@peoplewoo" class="zpsocialprofile-wrapper zpsocialprofile-youtube" target="_blank" aria-label="YouTube"><svg aria-hidden="true" class="zpsocialprofile" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><path d="M32.786 10l.106.001.392.002c1.94.009 6.896.05 11.873.237l.765.03c4.589.187 9.063.504 11.068 1.04 2.71.73 4.84 2.86 5.56 5.56 1.204 4.505 1.301 13.515 1.31 14.939v.382c-.009 1.424-.106 10.434-1.31 14.939a7.885 7.885 0 0 1-5.56 5.56c-4.455 1.19-21.107 1.3-24.098 1.309h-.923c-2.99-.01-19.635-.118-24.099-1.309a7.885 7.885 0 0 1-5.56-5.56c-.401-1.502-.68-3.504-.873-5.559l-.058-.65c-.314-3.688-.368-7.394-.377-8.552L1 32.124v-.194-.054l.002-.245c.009-1.158.063-4.864.377-8.552l.058-.65c.193-2.055.472-4.057.873-5.559a7.885 7.885 0 0 1 5.56-5.56c4.296-1.146 19.878-1.29 23.706-1.307L31.97 10h.105zM26.15 22.57v18.86L42.48 32l-16.33-9.43z"/></svg></a><a href="https://www.instagram.com/peoplewoo_consulting/" class="zpsocialprofile-wrapper zpsocialprofile-instagram" target="_blank" aria-label="Instagram"><svg aria-hidden="true" class="zpsocialprofile" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient x1="72.5875139%" y1="0%" x2="28.281045%" y2="106.524963%" id="linearGradient-1"><stop stop-color="#9A1DF1" offset="0%"></stop><stop stop-color="#ED1E64" offset="49.3618943%"></stop><stop stop-color="#FFD002" offset="100%"></stop></linearGradient><path d="M18.7470755,0.221595251 C15.3422244,0.382299247 13.0166948,0.927668835 10.9845413,1.72394402 C8.8808805,2.5440464 7.09761014,3.64310557 5.32364538,5.42434073 C3.54758782,7.20661909 2.45687425,8.99304465 1.64301187,11.0988238 C0.855031083,13.1361614 0.321066295,15.4627981 0.170711099,18.8697484 C0.0214311023,22.2829708 -0.012802497,23.3716107 0.00383750267,32.0611721 C0.0204135023,40.7496967 0.0587623014,41.8403975 0.221527098,45.254631 C0.384285494,48.6585158 0.927619882,50.9830597 1.72388866,53.0162565 C2.54502785,55.1199428 3.64296062,56.9022276 5.42521338,58.6772547 C7.20645494,60.4522883 8.9939045,61.5419779 11.1006629,62.3569282 C13.1359204,63.1438722 15.46353,63.6799042 18.8694627,63.8291842 C22.2826082,63.9795458 23.3722466,64.0127042 32.0596384,63.9961282 C40.7511454,63.9795458 41.8408478,63.941165 45.2539933,63.7794178 C48.6588444,63.616653 50.9822875,63.0712898 53.0165275,62.2770946 C55.1201883,61.4538563 56.9034586,60.3579395 58.6774234,58.5756547 C60.4513945,56.7943876 61.5421081,55.0069188 62.3560345,52.9001285 C63.1440153,50.8648453 63.6800089,48.5372038 63.8282777,45.1333446 C63.9775577,41.7180679 64.0128665,40.6273351 63.9962265,31.9388169 C63.9796441,23.2492555 63.9402841,22.1606092 63.7785369,18.7484684 C63.6167897,15.3414861 63.0714329,13.0179854 62.2761753,10.9837454 C61.4540249,8.88005905 60.3571033,7.0987919 58.5758618,5.32274074 C56.7946202,3.54875038 55.0071771,2.4559312 52.9004123,1.64411682 C50.8641371,0.856129637 48.5375324,0.319048049 45.1316061,0.171822452 C41.7184606,0.0204496555 40.6288222,-0.0127087437 31.9383264,0.00387365592 C23.2499298,0.0204560555 22.160285,0.0577936547 18.7470755,0.221595251 M19.1203747,58.0696835 C16.0006051,57.9338499 14.3064996,57.4154436 13.1774308,56.9810372 C11.682346,56.4024772 10.6154853,55.7088452 9.49261809,54.5942852 C8.37184371,53.4755524 7.67612533,52.4117765 7.09241974,50.9198021 C6.65381495,49.7906885 6.12611576,48.0986182 5.97993337,44.9788358 C5.82129017,41.6060871 5.78502777,40.5941383 5.76945657,32.0497481 C5.75287417,23.5074443 5.78394617,22.4954955 5.93120377,19.1196428 C6.06491897,16.0019213 6.58648055,14.3057037 7.01983094,13.1776334 C7.59834613,11.6804686 8.28988531,10.6156558 9.40655089,9.49280784 C10.5252389,8.36992787 11.5889956,7.67628948 13.081994,7.0925775 C14.2100452,6.65191191 15.9021283,6.12831512 19.0208227,5.98007832 C22.3956194,5.82038552 23.4064738,5.78618392 31.9486944,5.76960153 C40.4929438,5.75298713 41.5048734,5.78307992 44.8807453,5.93134872 C47.9983644,6.06715032 49.6945564,6.58350231 50.8216028,7.0199951 C52.3176987,7.59852308 53.3845595,8.28801427 54.5064091,9.40674704 C55.628201,10.5254798 56.323913,11.5871694 56.9076186,13.0832846 C57.3482458,14.2082189 57.8718362,15.9023821 58.0190938,19.0201036 C58.1797594,22.3949387 58.2160858,23.4068555 58.231593,31.9491913 C58.2481754,40.4935879 58.2171034,41.5054983 58.0688346,44.8792902 C57.933033,47.9990726 57.4156442,49.6942725 56.9802074,50.8243973 C56.4016858,52.3184581 55.710089,53.3853316 54.5924123,54.5082116 C53.4747995,55.6269444 52.4110427,56.3246916 50.9169691,56.9084356 C49.7910044,57.348026 48.0968988,57.8726723 44.9802333,58.0209411 C41.6055006,58.1795587 40.5945822,58.2158467 32.0492576,58.2314179 C23.507037,58.2480131 22.4961826,58.2158659 19.1203747,58.0696835 M45.2073489,14.8946189 C45.2114717,17.0138765 46.9346204,18.729806 49.053846,18.7256663 C51.1740891,18.7215116 52.8900251,16.9993549 52.8869253,14.8800973 C52.8827483,12.7608398 51.1595931,11.043899 49.03935,11.0480387 C46.9191132,11.052187 45.2031773,12.7753614 45.2073489,14.8946189 M15.5693094,32.0310857 C15.5869347,41.1063495 22.957565,48.4469894 32.0305952,48.4293954 C41.1046942,48.4117446 48.4493852,41.0430983 48.4318231,31.9678665 C48.414134,22.8957323 41.0424926,15.5509133 31.967376,15.5685072 C22.8942818,15.5861645 15.5516836,22.9579403 15.5693094,32.0310857 M21.3328633,32.0196937 C21.3225058,26.1295435 26.0897377,21.344654 31.978768,21.3342528 C37.868867,21.3228812 42.6547101,26.0880651 42.6661227,31.9792585 C42.6775581,37.870452 37.9103198,42.6542983 32.0192032,42.6657427 C26.1301793,42.6771143 21.3442722,37.9108872 21.3328633,32.0196937" id="path-2"></path></defs><g stroke="none" stroke-width="1" fill-rule="evenodd"><mask fill="white"><use xlink:href="#path-2"></use></mask><use class="cl-path-inherit" fill="url(#linearGradient-1)" xlink:href="#path-2"></use></g></svg></a><a href="https://wa.me/+917875494672" class="zpsocialprofile-wrapper zpsocialprofile-whatsapp" target="_blank" aria-label="WhatsApp"><svg aria-hidden="true" class="zpsocialprofile" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><defs><linearGradient x1="49.9999983%" y1="100%" x2="49.9999983%" y2="0.00237659529%" id="wtlinearGradient-1"><stop stop-color="#F9F9F9" offset="0%"></stop><stop stop-color="#FFFFFF" offset="100%"></stop></linearGradient></defs><g stroke="none" stroke-width="1" fill-rule="evenodd"><g fill-rule="nonzero"><path class="cl-path-transparent" d="M1.10771574,62.8926967 L5.4728797,47.0284478 C2.78074848,42.3847708 1.36440022,37.1174751 1.3659281,31.7224137 C1.37356752,14.8421228 15.1734138,1.1088243 32.1283401,1.1088243 C40.3575222,1.11186634 48.0825026,4.30144735 53.8884609,10.0874112 C59.6974751,15.873375 62.8938079,23.5651781 62.8907543,31.745229 C62.8831127,48.6255199 49.0832664,62.3603394 32.1283401,62.3603394 C32.1283401,62.3603394 32.1283401,62.3603394 32.1283401,62.3603394 L32.1145892,62.3603394 C26.9656208,62.3588184 21.9067976,61.0720346 17.4148193,58.633838 L1.10618786,62.8911757 L1.10771574,62.8926967 Z" fill="#25D266"></path><path class="cl-path-inherit" d="M32.1344517,0 C40.6585153,0.00304204197 48.6585147,3.30669962 54.6753211,9.30104333 C60.6905995,15.295387 64.0030515,23.264016 64,31.7376239 C63.9924328,49.0469187 49.9804471,63.1660029 32.660306,63.4466537 L32.1344517,63.4509114 L32.1344517,63.4509114 L32.1207007,63.4509114 C26.7883863,63.4493904 21.5477449,62.116976 16.893811,59.5905602 L0.00152788378,64 L0,64 L4.52100811,47.5668893 C1.73262021,42.7574209 0.265851778,37.3015186 0.267379662,31.7117665 C0.27501908,14.2261093 14.5683718,0 32.1344517,0 Z M32.143619,5.35703591 C17.5339943,5.35703591 5.65316999,17.179932 5.6470572,31.7132875 C5.64553057,36.6931103 7.04507211,41.5436462 9.69595047,45.7401431 L10.3269665,46.7379328 L7.65011409,56.464862 L17.6745596,53.8487059 L17.6760875,53.8487059 L18.6432379,54.4190888 C22.7089366,56.8207809 27.37051,58.0908335 32.1237565,58.0938755 L32.1344517,58.0938755 C46.7318533,58.0938755 58.6142055,46.2694584 58.6203176,31.7345818 C58.6218449,24.6907337 55.8701262,18.0682083 50.8693626,13.0868646 C45.868599,8.10552083 39.2192487,5.36007795 32.143619,5.35703591 Z M20.8510299,17.0688705 C21.3827335,17.0688705 21.9129092,17.0673765 22.3773858,17.0871497 C22.9457586,17.1099651 23.5737188,17.1358224 24.1695935,18.4560686 L24.1695935,18.4560686 C24.8785316,20.0242413 26.4262779,23.9439124 26.6249028,24.3408988 C26.8235276,24.7378853 26.9564535,25.2002757 26.6906018,25.729591 C26.42475,26.2589063 26.2918241,26.5889678 25.8945743,27.0513582 C25.4957966,27.5152696 25.057294,28.0856525 24.6997692,28.4400504 C24.2994636,28.8339948 23.8854071,29.2644438 24.3498838,30.0568957 C24.8143605,30.8508686 26.4125269,33.4457304 28.7792189,35.5462604 C31.8212355,38.2460727 34.3865524,39.0826342 35.1825798,39.4796207 C35.9786073,39.8766072 36.4430839,39.8096822 36.9075606,39.2803669 C37.3720373,38.7525727 38.8983932,36.966894 39.4285688,36.1744421 C39.9602724,35.3804691 40.4904481,35.512798 41.2207765,35.7774556 C41.9511049,36.0405922 45.8655432,37.9585997 46.6615706,38.3555862 C47.4575981,38.7525727 47.9893016,38.9503054 48.1879265,39.2803669 C48.3865514,39.6119495 48.3865514,41.1983744 47.7234499,43.0494569 C47.0588204,44.9005395 43.8090116,46.6846971 42.3483547,46.8170259 C42.2952399,46.8218379 42.2422464,46.8271688 42.189112,46.8328475 L42.0290247,46.850756 C40.6602396,47.0089406 39.0295689,47.2820712 32.7929696,44.8336146 C24.6997692,41.6562017 19.5905258,33.3970578 19.1917482,32.8692635 C18.7944984,32.3399482 15.9404115,28.5708582 15.9404115,24.6709604 C15.9404115,20.7710626 17.996943,18.8530551 18.7272715,18.0606032 C19.4575999,17.2681512 20.3193264,17.0688705 20.8510299,17.0688705 Z" fill="url(#wtlinearGradient-1)"></path></g></g></svg></a></div>
</div></div></div></div></div></div> ]]></content:encoded><pubDate>Mon, 24 Nov 2025 18:53:43 +0530</pubDate></item><item><title><![CDATA[Difference Between null & Undefined and=, == &=== | Peoplewoo Skills]]></title><link>https://www.peoplewoo.com/blogs/post/difference-between-null-undefined</link><description><![CDATA[ In JavaScript, developers often get confused between&nbsp; null ,&nbsp; undefined , and the operators&nbsp;=,&nbsp; == , and&nbsp;=== . Understanding these ]]></description><content:encoded><![CDATA[<div class="zpcontent-container blogpost-container "><div data-element-id="elm_VSFK6u_qTROrUlbkwFcnHQ" data-element-type="section" class="zpsection "><style type="text/css"></style><div class="zpcontainer-fluid zpcontainer"><div data-element-id="elm_AX1H_FWwTISZjTAoLhORpg" data-element-type="row" class="zprow zprow-container zpalign-items- zpjustify-content- " data-equal-column=""><style type="text/css"></style><div data-element-id="elm_QmO3R2StSMOPjvWG4mBR2w" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-8 zpcol-sm-12 zpalign-self- "><style type="text/css"></style><div data-element-id="elm_zt8AQ9V5TPuN5ANXWKA81A" data-element-type="image" class="zpelement zpelem-image "><style> @media (min-width: 992px) { [data-element-id="elm_zt8AQ9V5TPuN5ANXWKA81A"] .zpimage-container figure img { width: 730px ; height: 677.66px ; } } </style><div data-caption-color="" data-size-tablet="" data-size-mobile="" data-align="center" data-tablet-image-separate="false" data-mobile-image-separate="false" class="zpimage-container zpimage-align-center zpimage-tablet-align-center zpimage-mobile-align-center zpimage-size-fit zpimage-tablet-fallback-fit zpimage-mobile-fallback-fit hb-lightbox " data-lightbox-options="
                type:fullscreen,
                theme:dark"><figure role="none" class="zpimage-data-ref"><span class="zpimage-anchor" role="link" tabindex="0" aria-label="Open Lightbox" style="cursor:pointer;"><picture><img class="zpimage zpimage-style-none zpimage-space-none " src="/Group%20300.png" size="fit" data-lightbox="true"/></picture></span></figure></div>
</div><div data-element-id="elm_pfjc3-aGJQ56E4Rt5J6YrA" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><section><p><span style="color:rgb(0, 0, 0);"></span></p></section><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p></div>
<div><p></p><div><header><p></p><div><section><p><span style="color:rgb(0, 0, 0);"></span></p></section><div><p></p><div><section><p><span style="color:rgb(0, 0, 0);"></span></p></section><div><section><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p><span style="color:rgb(0, 0, 0);">In JavaScript, developers often get confused between&nbsp;<strong>null</strong>,&nbsp;<strong>undefined</strong>, and the operators&nbsp;<strong>=</strong>,&nbsp;<strong>==</strong>, and&nbsp;<strong>===</strong>. Understanding these concepts is crucial when writing Lightning Web Components (LWC) because JavaScript powers the entire framework.</span></p><p></p><div><section><p><span style="color:rgb(0, 0, 0);">JavaScript is the backbone of Lightning Web Components (LWC). Before you start building components, it’s important to understand the core JavaScript concepts used inside LWC. This blog covers the essential JavaScript fundamentals every Salesforce developer must know to work confidently with LWC.</span></p><div><span style="color:rgb(0, 0, 0);"><br/></span></div></section></div><p></p><h2><span style="color:rgb(0, 0, 0);">What is&nbsp;<code>undefined</code>&nbsp;in JavaScript?</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);"><code>undefined</code>&nbsp;means a variable has been declared but has not been assigned any value. It is the default state of any uninitialized variable.</span></p><h3><span style="color:rgb(0, 0, 0);"><br/></span></h3><h3><span style="color:rgb(0, 0, 0);">Example:</span></h3><pre><span style="color:rgb(0, 0, 0);"> let x; console.log(x); // undefined </span></pre><p><span style="color:rgb(0, 0, 0);">In LWC, you may frequently see&nbsp;<code>undefined</code>&nbsp;when API properties or data from Apex has not yet loaded.</span></p></div><p></p></div><p></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p></section></div></div></div></div></header></div><p></p><p></p><div><h2><span style="color:rgb(0, 0, 0);">Watch Our Video Tutorial</span></h2></div>
<p></p></div><section><div><h2><span style="color:rgb(0, 0, 0);"></span></h2></div>
<p></p></section></div><p></p></div></div><div data-element-id="elm_z4xbsx9qhAZXMbLmhC5oKw" data-element-type="video" class="zpelement zpelem-video "><style type="text/css"> @media (max-width: 767px) { [data-element-id="elm_z4xbsx9qhAZXMbLmhC5oKw"].zpelem-video iframe.zpvideo{ width:560px !important; height:315px !important; } } @media all and (min-width: 768px) and (max-width:991px){ [data-element-id="elm_z4xbsx9qhAZXMbLmhC5oKw"].zpelem-video iframe.zpvideo{ width:560px !important; height:315px !important; } } </style><div class="zpvideo-container zpiframe-align-left zpiframe-mobile-align-center zpiframe-tablet-align-center"><iframe class="zpvideo " width="2000" height="315" src="//www.youtube.com/embed/oz_entvnZ28?enablejsapi=1" frameborder="0" allowfullscreen id=youtube-video-1 data-api=youtube></iframe></div>
</div><div data-element-id="elm_QlHXRdluq-pxYjAQryfSiQ" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><section><p></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h2><span style="color:rgb(0, 0, 0);">What is <code>null</code> in JavaScript?</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);"><code>null</code> is an assignment value. It represents the intentional absence of an object value. Developers explicitly assign <code>null</code> when they want to clear or reset a variable. </span></p><h3><span style="color:rgb(0, 0, 0);"><br/></span></h3><h3><span style="color:rgb(0, 0, 0);">Example:</span></h3><div><span style="color:rgb(0, 0, 0);"><br/></span></div><pre><span style="color:rgb(0, 0, 0);"> let x = null; console.log(x); // null </span></pre><p><span style="color:rgb(0, 0, 0);"> In LWC, <code>null</code> is commonly used to reset tracked variables or remove reference values. </span></p><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">Difference Between <code>null</code> and <code>undefined</code></span></h2><div><code style="color:rgb(0, 0, 0);"><br/></code></div><p><span style="color:rgb(0, 0, 0);">The following table explains the core differences:</span></p><table border="1" cellpadding="8" cellspacing="0"><tbody><tr><th><span style="color:rgb(0, 0, 0);">Aspect</span></th><th><span style="color:rgb(0, 0, 0);">null</span></th><th><span style="color:rgb(0, 0, 0);">undefined</span></th></tr><tr><td><span style="color:rgb(0, 0, 0);">Meaning</span></td><td><span style="color:rgb(0, 0, 0);">Intentional absence of value</span></td><td><span style="color:rgb(0, 0, 0);">Value not yet assigned</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">Type</span></td><td><span style="color:rgb(0, 0, 0);">object</span></td><td><span style="color:rgb(0, 0, 0);">undefined</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">Assigned by</span></td><td><span style="color:rgb(0, 0, 0);">Developer manually</span></td><td><span style="color:rgb(0, 0, 0);">JavaScript engine by default</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">Use Case</span></td><td><span style="color:rgb(0, 0, 0);">Resetting value</span></td><td><span style="color:rgb(0, 0, 0);">Uninitialized variables</span></td></tr></tbody></table><hr/><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">Difference Between =, ==, and ===</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);"> JavaScript provides three different operators for assignment and comparison. Understanding these is essential for writing bug-free LWC code. </span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><table border="1" cellpadding="8" cellspacing="0"><tbody><tr><th><span style="color:rgb(0, 0, 0);">Operator</span></th><th><span style="color:rgb(0, 0, 0);">Name</span></th><th><span style="color:rgb(0, 0, 0);">Description</span></th></tr><tr><td><span style="color:rgb(0, 0, 0);">=</span></td><td><span style="color:rgb(0, 0, 0);">Assignment Operator</span></td><td><span style="color:rgb(0, 0, 0);">Used to assign a value to a variable.</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">==</span></td><td><span style="color:rgb(0, 0, 0);">Loose Equality (Abstract Equality)</span></td><td><span style="color:rgb(0, 0, 0);">Compares values after type conversion.</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">===</span></td><td><span style="color:rgb(0, 0, 0);">Strict Equality</span></td><td><span style="color:rgb(0, 0, 0);">Compares both value and type; recommended for use.</span></td></tr></tbody></table><h3><span style="color:rgb(0, 0, 0);"><br/></span></h3><h3><span style="color:rgb(0, 0, 0);">Examples:</span></h3><div><span style="color:rgb(0, 0, 0);"><br/></span></div><pre><span style="color:rgb(0, 0, 0);"> // Assignment let x = 10; // Loose equality (value only) console.log(5 == &quot;5&quot;);</span></pre><pre><span style="color:rgb(0, 0, 0);">  // true // Strict equality (value + type) console.log(5 === &quot;5&quot;);</span></pre><pre><span style="color:rgb(0, 0, 0);"> // false console.log(5 === 5);   // true </span></pre><p><span style="color:rgb(0, 0, 0);"> In Lightning Web Components, always prefer <strong>===</strong> to avoid unexpected behavior, especially when validating API inputs or comparing values returned from Apex. </span></p><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">Real-Life Example in LWC</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);"> Imagine you are fetching user details from an Apex method. Initially, the variable will be <code>undefined</code> because the result hasn't arrived. After data is loaded, if a field is missing, it may return <code>null</code>. </span></p><pre><span style="color:rgb(0, 0, 0);"> @track userDetails; connectedCallback() {     getUserInfo()         </span></pre><pre><span style="color:rgb(0, 0, 0);">.then(result =&gt; {             if(result === null) {            </span></pre><pre><span style="color:rgb(0, 0, 0);">     console.log(&quot;No user data found&quot;);             }         </span></pre><pre><span style="color:rgb(0, 0, 0);">    this.userDetails = result;         }); } </span></pre><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">Best Practices</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><ul><li><span style="color:rgb(0, 0, 0);">Use <strong>===</strong> for all comparisons.</span></li><li><span style="color:rgb(0, 0, 0);">Use <strong>null</strong> intentionally when resetting values.</span></li><li><span style="color:rgb(0, 0, 0);">Avoid unnecessary type coercion caused by <strong>==</strong>.</span></li><li><span style="color:rgb(0, 0, 0);">Always initialize variables properly in LWC.</span></li><li><span style="color:rgb(0, 0, 0);">Check for both <code>null</code> and <code>undefined</code> where needed using: </span><pre><span style="color:rgb(0, 0, 0);">if (value == null)</span></pre><span style="color:rgb(0, 0, 0);"> It covers both cases.</span></li></ul></section></div>
</div><div class="zpelement zpelem-carousel " data-element-id="elm_byTBvaroUVlqNQzB3l0WEQ" data-element-type="carousel" data-currentslide-index="0" data-transition="slide_left" data-zs-autoslide="false" data-zs-slider="min-height-el: zpcarousel-content-container;arrow-cont: zpcarousel-arrows-container; active-controller: zpcarousel-controller-active; controller-cont: zpcarousel-controller-container; controller: zpcarousel-controller; right-arrow: zpcarousel-arrow-right; left-arrow: zpcarousel-arrow-left;active-slide:zpcarousel-content-active; slide: zpcarousel-content; slides-cont: zpcarousel-content-container;content-cont : zpcarousel-content-inner; background: false;slide-pause-btn:zpcarousel-pause-btn;slide-play-btn:zpcarousel-play-btn;"><div class="zpcarousel-container zpcarousel-style-01"><style></style><div class="zpcarousel-content-container"><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_-dxt0NaImCeUb0jHYGM2Ow" data-slide-name="Slide 1"><div class="zpcarousel-content-inner"><div data-element-id="elm_4Jy8AFUbkHw4IXVthKXcwg" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_eO9573nNV2JPmlpkVUhEdg" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_SiJIPTsI0iZNgc4tajDCvw" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Dharmesh R.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>The explanations are clear, and the repetition really helps to reinforce the concepts. It covers everything in detail, from the basics to more advanced topics. The course includes in-depth examples that make complex ideas easy to understand. Overall, I’m really impressed and can’t wait to explore more!</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_NZnF622zgu6xIrpJo386_g" data-slide-name="Slide 2"><div class="zpcarousel-content-inner"><div data-element-id="elm_hHh-tqVupL3HL8KYT1kf9Q" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm__dSB6W4LHkpHg36wJiyBsw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_GHUL9IsOVpazUCwTJjdzMw" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Jermaine L.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>Taking this course like help me acquire all the knowledge and skills I need to excel and optimize my performance to fulfilling my operational duties in my current role as an email marketing specialist</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_v3u8hhd_AsZxORmwnoA_2g" data-slide-name="Slide 3"><div class="zpcarousel-content-inner"><div data-element-id="elm_DD4MpNQtMS1HKlrokaUzeA" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_k40UvPeZYpsuUJLZc3IAZw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_t0XTYi6tHJ5BJkc4CqF21g" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Sumit N.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>Awesome explanation. He keep repeating which helps to remind/refresh the concepts. Loved it</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_hy7Rbr8nliB0X9rRDa5aow" data-slide-name="Slide 4"><div class="zpcarousel-content-inner"><div data-element-id="elm_QL8Q-Kw-ITIb4l-A8xb-mA" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_OAbkKPefCMhNQsVayTvj2w" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_NgbzA5biiFsJ40IvZ4dfyg" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Varun V.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>It's a great course that covers everything you need to know. After almost finishing, I feel confident using the SDC platform. Definitely a 5-star experience!</span></span></p></div>
</div></div></div></div></div></div><div class="zpelement zpcarousel-content " data-element-type="carouselslide" data-element-id="elm_aJlL0IwMmDJL1pq3VxCvig" data-slide-name="Slide 5"><div class="zpcarousel-content-inner"><div data-element-id="elm_WVzZlT8_Ygn-L_HvDcrbhA" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_nz3RpOWIfz2pKHIP8PmbXw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_cdESQ-gJxvN41XpT7ZaAkg" data-element-type="iconHeadingText" class="zpelement zpelem-iconheadingtext "><style type="text/css"></style><div class="zpicon-container zpicon-align-center zpicon-align-mobile-center zpicon-align-tablet-center "><style></style><span class="zpicon zpicon-common zpicon-anchor zpicon-size-md zpicon-style-none "><svg viewBox="0 0 496 512" height="496" width="512" aria-label="hidden" xmlns="http://www.w3.org/2000/svg"><path d="M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"></path></svg></span><h4 class="zpicon-heading " data-editor="true"><span>Prajakta Nimba S.</span></h4><div class="zpicon-text-container " data-editor="true"><p><span><span>This course is perfect for anyone looking to build a solid foundation in Salesforce Data Cloud. The content is well-structured, easy to follow, and packed with real-world examples that make the concepts practical</span></span></p></div>
</div></div></div></div></div></div></div><div class="zpcarousel-arrows-container zpcarousel-arrow-type-01" data-arrow-style="2"><div class="zpcarousel-arrow-left" tabindex="0" role="button" aria-label="Previous"><svg aria-hidden="true" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" class="svg-icon-18px"><path d="M0,16c0,0.3,0.1,0.5,0.3,0.7l9.9,10c0.4,0.4,1,0.4,1.4,0c0.4-0.4,0.4-1,0-1.4L3.4,17H31 c0.6,0,1-0.5,1-1s-0.4-1-1-1H3.4l8.2-8.3c0.4-0.4,0.4-1,0-1.4c-0.4-0.4-1-0.4-1.4,0l-9.9,10C0.1,15.5,0,15.7,0,16z"></path></svg></div>
<div class="zpcarousel-arrow-right" tabindex="0" role="button" aria-label="Next"><svg aria-hidden="true" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" class="svg-icon-18px"><path id="arrow-right-style2-Arrow_Forward" d="M32,16c0-0.3-0.1-0.5-0.3-0.7l-9.9-10c-0.4-0.4-1-0.4-1.4,0c-0.4,0.4-0.4,1,0,1.4 l8.2,8.3H1c-0.6,0-1,0.5-1,1s0.4,1,1,1h27.6l-8.2,8.3c-0.4,0.4-0.4,1,0,1.4c0.4,0.4,1,0.4,1.4,0l9.9-10C31.9,16.5,32,16.3,32,16z"></path></svg></div>
</div><div class="zpcarousel-controller-container zpcarousel-controller-type-01"><div class="zpcarousel-controller zpcarousel-controller-active" data-slide-index="0"></div>
<div class="zpcarousel-controller " data-slide-index="1"></div><div class="zpcarousel-controller " data-slide-index="2"></div>
<div class="zpcarousel-controller " data-slide-index="3"></div><div class="zpcarousel-controller " data-slide-index="4"></div>
</div></div></div><div data-element-id="elm_Vu-0h7FBeerqTMPmZaWlug" data-element-type="heading" class="zpelement zpelem-heading "><style></style><h2
 class="zpheading zpheading-style-none zpheading-align-left zpheading-align-mobile-left zpheading-align-tablet-left " data-editor="true"><span><span style="color:rgb(0, 0, 0);">Frequently Asked Questions (FAQ)</span><br/></span></h2></div>
<div data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA" data-element-type="accordion" class="zpelement zpelem-accordion " data-tabs-inactive="false" data-icon-style="1"><style> [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion, [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content{ border-style:solid; border-color: !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content.zpaccordion-active-content:last-of-type{ border-block-end-width:1px !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion.zpaccordion-active + .zpaccordion-content{ border-block-start-color: transparent !important; } @media all and (min-width: 768px) and (max-width:991px){ [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion, [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content{ border-style:solid; border-color: !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content:last-of-type{ border-block-end-width:1px !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion.zpaccordion-active + .zpaccordion-content{ border-block-start-color: transparent !important; } } @media all and (max-width:767px){ [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion, [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content{ border-style:solid; border-color: !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion-content:last-of-type{ border-block-end-width:1px !important; } [data-element-id="elm_ktqKpWKrfi_KyAGMNIDpGA"] .zpaccordion-container.zpaccordion-style-01 .zpaccordion.zpaccordion-active + .zpaccordion-content{ border-block-start-color: transparent !important; } } </style><div class="zpaccordion-container zpaccordion-style-01 zpaccordion-with-icon zpaccord-svg-icon-1 zpaccordion-icon-align-left "><div data-element-id="elm_avqPnRbxn96EwANShYaFjg" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="1. Is null equal to undefined?" data-content-id="elm_X8MB5lkAUEcGoYBtGrpljg" style="margin-top:0;" tabindex="0" role="button" aria-label="1. Is null equal to undefined?"><span class="zpaccordion-name">1. Is null equal to undefined?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_X8MB5lkAUEcGoYBtGrpljg" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_u5Cj1v0VUadpxrxv948nyw" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_7ezNrxV4FkYz7RGU1G0BtQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_hae4_dzBKBBmMQbSfRCyug" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p><strong style="color:rgb(0, 0, 0);"></strong></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><div><div><p><span style="color:rgb(0, 0, 0);"><span></span></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);">Yes,&nbsp;<code>null == undefined</code>&nbsp;returns true due to type coercion, but&nbsp;<code>null === undefined</code>&nbsp;returns false.</span></p></div><p></p></div><p></p></div><p></p></div></div></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div>
</div></div></div></div></div><div data-element-id="elm_2U5i1G2PT4th-0HwQ_qYMg" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="2. Which operator should I use in LWC?" data-content-id="elm_HWiLrHq626LLO7HEwZZO0A" style="margin-top:0;" tabindex="0" role="button" aria-label="2. Which operator should I use in LWC?"><span class="zpaccordion-name">2. Which operator should I use in LWC?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_HWiLrHq626LLO7HEwZZO0A" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_EsUHLPDiEOSRoxW1Va1vSQ" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_e_hMh4qQPANv9Gq71QOCbQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_yDDgYpCDh88L_B4yVqVDpw" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><div><span style="color:rgb(0, 0, 0);"><div><p><span></span></p><div><p></p><div><p></p><div><p>Always use&nbsp;<strong>===</strong>&nbsp;for strict comparisons to avoid unexpected results.</p></div><p></p></div><p></p></div></div></span><p></p></div></div></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div></div></div></div></div></div></div>
</div></div></div></div></div><div data-element-id="elm_z819rp9QtsimO7OBe5fUQQ" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="3. When should I use null?" data-content-id="elm_G0J2WJbaranPy8N5RGud_Q" style="margin-top:0;" tabindex="0" role="button" aria-label="3. When should I use null?"><span class="zpaccordion-name">3. When should I use null?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_G0J2WJbaranPy8N5RGud_Q" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_NLdjpQsYYYsfKNQ4rWhxJg" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_mCo9PctebWjYnQx_burGTQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_PUMBoTZ3jG3CqnmnOda7FA" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);">Use&nbsp;<code>null</code>&nbsp;when intentionally clearing or resetting a variable.</span></p></div><p></p></div><p></p></div></div>
</div></div></div></div></div><div data-element-id="elm_MrzO9Mu2yvjD1yOveoN1ag" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="4. Why does typeof null return &quot;object&quot;?" data-content-id="elm_VCfqx-I0okQtrLLtQgg6uQ" style="margin-top:0;" tabindex="0" role="button" aria-label="4. Why does typeof null return &quot;object&quot;?"><span class="zpaccordion-name">4. Why does typeof null return &quot;object&quot;?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_VCfqx-I0okQtrLLtQgg6uQ" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_83IdZWSoCFzucCnLahu5cw" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_lHAb9U1G1dgp1V6c444ATQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_Q-zMCoK5NRejxdtEjZeb0g" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><p style="color:rgb(0, 0, 0);"></p><div><p style="color:rgb(0, 0, 0);"></p><div><p style="color:rgb(0, 0, 0);"></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);">It is a long-standing JavaScript bug preserved for backward compatibility. Though&nbsp;<code>null</code>&nbsp;is not an object, its type incorrectly returns &quot;object&quot;.</span></p></div><p></p></div><p style="color:rgb(0, 0, 0);"></p></div><p style="color:rgb(0, 0, 0);"></p></div><p style="color:rgb(0, 0, 0);"></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div>
</div></div></div></div></div><div data-element-id="elm_tbTU4vUzVyHxec4fh5treA" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="5. How do I check if a variable is null or undefined?" data-content-id="elm_ytAT6ZF-UgNskNSKR7FuZQ" style="margin-top:0;" tabindex="0" role="button" aria-label="5. How do I check if a variable is null or undefined?"><span class="zpaccordion-name">5. How do I check if a variable is null or undefined?</span><span class="zpaccordionicon zpaccord-icon-inactive"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6 c1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M128,169.174c-1.637,0-3.276-0.625-4.525-1.875l-56.747-56.747c-2.5-2.499-2.5-6.552,0-9.05c2.497-2.5,6.553-2.5,9.05,0 L128,153.722l52.223-52.22c2.496-2.5,6.553-2.5,9.049,0c2.5,2.499,2.5,6.552,0,9.05l-56.746,56.747 C131.277,168.549,129.638,169.174,128,169.174z M256,128C256,57.42,198.58,0,128,0C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128 C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2c-63.522,0-115.2-51.679-115.2-115.2 C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9c-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span><span class="zpaccordionicon zpaccord-icon-active"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-1"><path d="M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6 C97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"></path></svg><svg aria-hidden="true" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-2"><path d="M184.746,156.373c-1.639,0-3.275-0.625-4.525-1.875L128,102.278l-52.223,52.22c-2.497,2.5-6.55,2.5-9.05,0 c-2.5-2.498-2.5-6.551,0-9.05l56.749-56.747c1.2-1.2,2.828-1.875,4.525-1.875l0,0c1.697,0,3.325,0.675,4.525,1.875l56.745,56.747 c2.5,2.499,2.5,6.552,0,9.05C188.021,155.748,186.383,156.373,184.746,156.373z M256,128C256,57.42,198.58,0,128,0 C57.42,0,0,57.42,0,128c0,70.58,57.42,128,128,128C198.58,256,256,198.58,256,128z M243.2,128c0,63.521-51.679,115.2-115.2,115.2 c-63.522,0-115.2-51.679-115.2-115.2C12.8,64.478,64.478,12.8,128,12.8C191.521,12.8,243.2,64.478,243.2,128z"></path></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-3"><path d="M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1c-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7z"/></svg><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" class="svg-icon-15px zpaccord-svg-icon-4"><path d="M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z"></path></svg></span></div>
<div data-element-id="elm_ytAT6ZF-UgNskNSKR7FuZQ" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_I_fDz0ybSUu9nfzEuPrMMg" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column="false"><style type="text/css"></style><div data-element-id="elm_LJZ6EEKHjUSNa8ZMVwDadw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div data-element-id="elm_zjpsXejtTlBuGOWTiUljMA" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><section><p><span style="color:rgb(0, 0, 0);"></span></p><div><main><section><p></p><div><div><section><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><strong style="color:rgb(0, 0, 0);"></strong><div><p><span style="color:rgb(0, 0, 0);">Use:</span></p><pre><span style="color:rgb(0, 0, 0);"> if (value == null) {    // value is either null or undefined } </span></pre></div></div><p></p></div><p></p></section></div></div><p></p></section></main></div><p></p></section><section></section></div>
</div></div></div></div></div></div></div><div data-element-id="elm_8m4TfeROM6fQN9AHueEupg" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align-left zptext-align-mobile-left zptext-align-tablet-left " data-editor="true"><p></p><div><p><span style="font-family:Poppins, sans-serif;font-size:40px;font-weight:600;color:rgb(0, 0, 0);">Conclusion</span></p><div><div><span style="color:rgb(0, 0, 0);"><strong></strong></span></div><div><p></p></div>
</div><div><p></p><div><section><p></p></section></div></div><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p><div><p></p><div><p></p><div><p></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);"><strong></strong></span></p><div><p></p><div><p></p><div><p></p><div><p></p></div></div></div></div></div></div></div></div></div><div><p></p><div><p><span style="color:rgb(0, 0, 0);">Understanding the differences between&nbsp;<strong>var</strong>,&nbsp;<strong>let</strong>, and&nbsp;<strong>const</strong>&nbsp;is essential for writing modern JavaScript and building high-quality Lightning Web Components. Follow best practices by avoiding&nbsp;<strong>var</strong>, using&nbsp;<strong>let</strong>&nbsp;for dynamic values, and&nbsp;<strong>const</strong>&nbsp;for stable values. This ensures clean, secure, and reliable code—especially in Salesforce development.</span></p><p><strong style="color:rgb(0, 0, 0);">Keep learning with Peoplewoo Skills to master JavaScript, LWC, and Salesforce development!</strong></p></div><div><span style="color:rgb(0, 0, 0);"><br/></span></div></div>
</div></div></div><p></p><div><div><h2></h2></div><div><div><h2><span style="color:rgb(0, 0, 0);">More SFDC Resources</span></h2></div><span style="color:rgb(0, 0, 0);"><br/></span><div><span style="font-style:italic;color:rgb(0, 0, 0);"><p>Start your SFMC journey today — join our&nbsp;<strong><a href="https://www.peoplewoo.com/" target="_blank" rel="">Live Training</a></strong>&nbsp;</p><p>Need help? Chat with us on&nbsp;<strong><a href="https://wa.me/%2B917875494672" rel="">WhatsApp</a></strong>&nbsp;anytime.</p><p>Learn. Practice. Get Certified. Succeed with&nbsp;<strong><a href="https://www.youtube.com/%40peoplewoo" target="_blank" rel="">Peoplewoo Skills</a></strong><a href="https://www.youtube.com/redirect?event=video_description&amp;redir_token=QUFFLUhqbUhyQUhpemJaOGZXR1RFRmxub3lNZlR4QW43QXxBQ3Jtc0ttMFhRMWtISFBVdlhJYlNab3NZS0hRd0RrQ0hwaTNGVEVhX2hVWUo3TktGN3VGa2FIWWtsQ1QtM0wxWG1ud0ZEeG02OG1CU3ZvVkE3ekNUUjZoaWFxZmhsUHNMR2diOEl5Wm5ROEpiUTVJSkJfQjF1MA&amp;q=https%3A%2F%2Fchat.whatsapp.com%2FKGLPRc9tofo0oiyd9oQW4E&amp;v=d_fgnADOmiQ" target="_blank" rel="">.</a></p></span></div></div><div><span style="font-style:italic;color:rgb(0, 0, 0);"><p><a href="https://www.youtube.com/%40peoplewoo" rel=""></a></p></span></div>
</div><p></p></div><p></p></div></div></div><div data-element-id="elm_KnMYXjQPWbIKC85JEm98qw" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-4 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"></style><div class="zpelement zpelem-newsletter " data-list-id="" data-integ-type="" data-element-id="elm_eV_tPTfOVvRvGG8gHurC3Q" data-element-type="newsletter"><style type="text/css"></style><div class="zpnewsletter-container zpnewsletter-style-01 "><h2 class="zpheading zpheading-align-center zpnewsletter-heading" data-editor="true">Subscribe to our newsletter</h2><p class="zptext zptext-align-center zpnewsletter-desc" data-editor="true"> Stay informed about our latest updates through email. Subscribe here.</p><form class="zpform-container zpnewsletter-input-container"><label for="Email_elm_eV_tPTfOVvRvGG8gHurC3Q" class="zs-visually-hidden">Email</label><input type="text" id="Email_elm_eV_tPTfOVvRvGG8gHurC3Q" name="email" placeholder="Email" class="zpnewsletter-email-input-field"/><button type="submit" class="zpbutton zpnewsletter-button zpbutton-type-primary zpbutton-size-md">Subscribe</button></form></div>
</div><div data-element-id="elm_3-a_z2EN2Rdvo4WVGz-Y1Q" itemscope="" data-element-type="socialprofile" class="zpelement zpelem-socialprofile" data-element-id="elm_3-a_z2EN2Rdvo4WVGz-Y1Q"><style type="text/css"></style><div data-socialprofile_container class="zpsocialprofile-container zpsocialprofile-size-md zpsocialprofile-halign-center zpsocialprofile-align-mobile-center zpsocialprofile-align-tablet-center zpsocialprofile-style-none zpsocialprofile-type-color "><a href="https://www.linkedin.com/company/peoplewoo" class="zpsocialprofile-wrapper zpsocialprofile-linkedin" target="_blank" aria-label="LinkedIn"><svg aria-hidden="true" class="zpsocialprofile" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><path d="M64 4.706v54.588A4.706 4.706 0 0 1 59.294 64H4.706A4.706 4.706 0 0 1 0 59.294V4.706A4.706 4.706 0 0 1 4.706 0h54.588A4.706 4.706 0 0 1 64 4.706zM18.824 24.47H9.412v30.117h9.412V24.471zm.847-10.353a5.421 5.421 0 0 0-5.384-5.46h-.17a5.459 5.459 0 0 0 0 10.918 5.421 5.421 0 0 0 5.554-5.289v-.17zm34.917 22.174c0-9.054-5.76-12.574-11.482-12.574a10.73 10.73 0 0 0-9.525 4.856h-.263v-4.103H24.47v30.117h9.411V38.57a6.25 6.25 0 0 1 5.647-6.738h.358c2.993 0 5.214 1.882 5.214 6.625v16.132h9.412l.075-18.296z"/></svg></a><a href="https://www.youtube.com/@peoplewoo" class="zpsocialprofile-wrapper zpsocialprofile-youtube" target="_blank" aria-label="YouTube"><svg aria-hidden="true" class="zpsocialprofile" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><path d="M32.786 10l.106.001.392.002c1.94.009 6.896.05 11.873.237l.765.03c4.589.187 9.063.504 11.068 1.04 2.71.73 4.84 2.86 5.56 5.56 1.204 4.505 1.301 13.515 1.31 14.939v.382c-.009 1.424-.106 10.434-1.31 14.939a7.885 7.885 0 0 1-5.56 5.56c-4.455 1.19-21.107 1.3-24.098 1.309h-.923c-2.99-.01-19.635-.118-24.099-1.309a7.885 7.885 0 0 1-5.56-5.56c-.401-1.502-.68-3.504-.873-5.559l-.058-.65c-.314-3.688-.368-7.394-.377-8.552L1 32.124v-.194-.054l.002-.245c.009-1.158.063-4.864.377-8.552l.058-.65c.193-2.055.472-4.057.873-5.559a7.885 7.885 0 0 1 5.56-5.56c4.296-1.146 19.878-1.29 23.706-1.307L31.97 10h.105zM26.15 22.57v18.86L42.48 32l-16.33-9.43z"/></svg></a><a href="https://www.instagram.com/peoplewoo_consulting/" class="zpsocialprofile-wrapper zpsocialprofile-instagram" target="_blank" aria-label="Instagram"><svg aria-hidden="true" class="zpsocialprofile" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient x1="72.5875139%" y1="0%" x2="28.281045%" y2="106.524963%" id="linearGradient-1"><stop stop-color="#9A1DF1" offset="0%"></stop><stop stop-color="#ED1E64" offset="49.3618943%"></stop><stop stop-color="#FFD002" offset="100%"></stop></linearGradient><path d="M18.7470755,0.221595251 C15.3422244,0.382299247 13.0166948,0.927668835 10.9845413,1.72394402 C8.8808805,2.5440464 7.09761014,3.64310557 5.32364538,5.42434073 C3.54758782,7.20661909 2.45687425,8.99304465 1.64301187,11.0988238 C0.855031083,13.1361614 0.321066295,15.4627981 0.170711099,18.8697484 C0.0214311023,22.2829708 -0.012802497,23.3716107 0.00383750267,32.0611721 C0.0204135023,40.7496967 0.0587623014,41.8403975 0.221527098,45.254631 C0.384285494,48.6585158 0.927619882,50.9830597 1.72388866,53.0162565 C2.54502785,55.1199428 3.64296062,56.9022276 5.42521338,58.6772547 C7.20645494,60.4522883 8.9939045,61.5419779 11.1006629,62.3569282 C13.1359204,63.1438722 15.46353,63.6799042 18.8694627,63.8291842 C22.2826082,63.9795458 23.3722466,64.0127042 32.0596384,63.9961282 C40.7511454,63.9795458 41.8408478,63.941165 45.2539933,63.7794178 C48.6588444,63.616653 50.9822875,63.0712898 53.0165275,62.2770946 C55.1201883,61.4538563 56.9034586,60.3579395 58.6774234,58.5756547 C60.4513945,56.7943876 61.5421081,55.0069188 62.3560345,52.9001285 C63.1440153,50.8648453 63.6800089,48.5372038 63.8282777,45.1333446 C63.9775577,41.7180679 64.0128665,40.6273351 63.9962265,31.9388169 C63.9796441,23.2492555 63.9402841,22.1606092 63.7785369,18.7484684 C63.6167897,15.3414861 63.0714329,13.0179854 62.2761753,10.9837454 C61.4540249,8.88005905 60.3571033,7.0987919 58.5758618,5.32274074 C56.7946202,3.54875038 55.0071771,2.4559312 52.9004123,1.64411682 C50.8641371,0.856129637 48.5375324,0.319048049 45.1316061,0.171822452 C41.7184606,0.0204496555 40.6288222,-0.0127087437 31.9383264,0.00387365592 C23.2499298,0.0204560555 22.160285,0.0577936547 18.7470755,0.221595251 M19.1203747,58.0696835 C16.0006051,57.9338499 14.3064996,57.4154436 13.1774308,56.9810372 C11.682346,56.4024772 10.6154853,55.7088452 9.49261809,54.5942852 C8.37184371,53.4755524 7.67612533,52.4117765 7.09241974,50.9198021 C6.65381495,49.7906885 6.12611576,48.0986182 5.97993337,44.9788358 C5.82129017,41.6060871 5.78502777,40.5941383 5.76945657,32.0497481 C5.75287417,23.5074443 5.78394617,22.4954955 5.93120377,19.1196428 C6.06491897,16.0019213 6.58648055,14.3057037 7.01983094,13.1776334 C7.59834613,11.6804686 8.28988531,10.6156558 9.40655089,9.49280784 C10.5252389,8.36992787 11.5889956,7.67628948 13.081994,7.0925775 C14.2100452,6.65191191 15.9021283,6.12831512 19.0208227,5.98007832 C22.3956194,5.82038552 23.4064738,5.78618392 31.9486944,5.76960153 C40.4929438,5.75298713 41.5048734,5.78307992 44.8807453,5.93134872 C47.9983644,6.06715032 49.6945564,6.58350231 50.8216028,7.0199951 C52.3176987,7.59852308 53.3845595,8.28801427 54.5064091,9.40674704 C55.628201,10.5254798 56.323913,11.5871694 56.9076186,13.0832846 C57.3482458,14.2082189 57.8718362,15.9023821 58.0190938,19.0201036 C58.1797594,22.3949387 58.2160858,23.4068555 58.231593,31.9491913 C58.2481754,40.4935879 58.2171034,41.5054983 58.0688346,44.8792902 C57.933033,47.9990726 57.4156442,49.6942725 56.9802074,50.8243973 C56.4016858,52.3184581 55.710089,53.3853316 54.5924123,54.5082116 C53.4747995,55.6269444 52.4110427,56.3246916 50.9169691,56.9084356 C49.7910044,57.348026 48.0968988,57.8726723 44.9802333,58.0209411 C41.6055006,58.1795587 40.5945822,58.2158467 32.0492576,58.2314179 C23.507037,58.2480131 22.4961826,58.2158659 19.1203747,58.0696835 M45.2073489,14.8946189 C45.2114717,17.0138765 46.9346204,18.729806 49.053846,18.7256663 C51.1740891,18.7215116 52.8900251,16.9993549 52.8869253,14.8800973 C52.8827483,12.7608398 51.1595931,11.043899 49.03935,11.0480387 C46.9191132,11.052187 45.2031773,12.7753614 45.2073489,14.8946189 M15.5693094,32.0310857 C15.5869347,41.1063495 22.957565,48.4469894 32.0305952,48.4293954 C41.1046942,48.4117446 48.4493852,41.0430983 48.4318231,31.9678665 C48.414134,22.8957323 41.0424926,15.5509133 31.967376,15.5685072 C22.8942818,15.5861645 15.5516836,22.9579403 15.5693094,32.0310857 M21.3328633,32.0196937 C21.3225058,26.1295435 26.0897377,21.344654 31.978768,21.3342528 C37.868867,21.3228812 42.6547101,26.0880651 42.6661227,31.9792585 C42.6775581,37.870452 37.9103198,42.6542983 32.0192032,42.6657427 C26.1301793,42.6771143 21.3442722,37.9108872 21.3328633,32.0196937" id="path-2"></path></defs><g stroke="none" stroke-width="1" fill-rule="evenodd"><mask fill="white"><use xlink:href="#path-2"></use></mask><use class="cl-path-inherit" fill="url(#linearGradient-1)" xlink:href="#path-2"></use></g></svg></a><a href="https://wa.me/+917875494672" class="zpsocialprofile-wrapper zpsocialprofile-whatsapp" target="_blank" aria-label="WhatsApp"><svg aria-hidden="true" class="zpsocialprofile" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><defs><linearGradient x1="49.9999983%" y1="100%" x2="49.9999983%" y2="0.00237659529%" id="wtlinearGradient-1"><stop stop-color="#F9F9F9" offset="0%"></stop><stop stop-color="#FFFFFF" offset="100%"></stop></linearGradient></defs><g stroke="none" stroke-width="1" fill-rule="evenodd"><g fill-rule="nonzero"><path class="cl-path-transparent" d="M1.10771574,62.8926967 L5.4728797,47.0284478 C2.78074848,42.3847708 1.36440022,37.1174751 1.3659281,31.7224137 C1.37356752,14.8421228 15.1734138,1.1088243 32.1283401,1.1088243 C40.3575222,1.11186634 48.0825026,4.30144735 53.8884609,10.0874112 C59.6974751,15.873375 62.8938079,23.5651781 62.8907543,31.745229 C62.8831127,48.6255199 49.0832664,62.3603394 32.1283401,62.3603394 C32.1283401,62.3603394 32.1283401,62.3603394 32.1283401,62.3603394 L32.1145892,62.3603394 C26.9656208,62.3588184 21.9067976,61.0720346 17.4148193,58.633838 L1.10618786,62.8911757 L1.10771574,62.8926967 Z" fill="#25D266"></path><path class="cl-path-inherit" d="M32.1344517,0 C40.6585153,0.00304204197 48.6585147,3.30669962 54.6753211,9.30104333 C60.6905995,15.295387 64.0030515,23.264016 64,31.7376239 C63.9924328,49.0469187 49.9804471,63.1660029 32.660306,63.4466537 L32.1344517,63.4509114 L32.1344517,63.4509114 L32.1207007,63.4509114 C26.7883863,63.4493904 21.5477449,62.116976 16.893811,59.5905602 L0.00152788378,64 L0,64 L4.52100811,47.5668893 C1.73262021,42.7574209 0.265851778,37.3015186 0.267379662,31.7117665 C0.27501908,14.2261093 14.5683718,0 32.1344517,0 Z M32.143619,5.35703591 C17.5339943,5.35703591 5.65316999,17.179932 5.6470572,31.7132875 C5.64553057,36.6931103 7.04507211,41.5436462 9.69595047,45.7401431 L10.3269665,46.7379328 L7.65011409,56.464862 L17.6745596,53.8487059 L17.6760875,53.8487059 L18.6432379,54.4190888 C22.7089366,56.8207809 27.37051,58.0908335 32.1237565,58.0938755 L32.1344517,58.0938755 C46.7318533,58.0938755 58.6142055,46.2694584 58.6203176,31.7345818 C58.6218449,24.6907337 55.8701262,18.0682083 50.8693626,13.0868646 C45.868599,8.10552083 39.2192487,5.36007795 32.143619,5.35703591 Z M20.8510299,17.0688705 C21.3827335,17.0688705 21.9129092,17.0673765 22.3773858,17.0871497 C22.9457586,17.1099651 23.5737188,17.1358224 24.1695935,18.4560686 L24.1695935,18.4560686 C24.8785316,20.0242413 26.4262779,23.9439124 26.6249028,24.3408988 C26.8235276,24.7378853 26.9564535,25.2002757 26.6906018,25.729591 C26.42475,26.2589063 26.2918241,26.5889678 25.8945743,27.0513582 C25.4957966,27.5152696 25.057294,28.0856525 24.6997692,28.4400504 C24.2994636,28.8339948 23.8854071,29.2644438 24.3498838,30.0568957 C24.8143605,30.8508686 26.4125269,33.4457304 28.7792189,35.5462604 C31.8212355,38.2460727 34.3865524,39.0826342 35.1825798,39.4796207 C35.9786073,39.8766072 36.4430839,39.8096822 36.9075606,39.2803669 C37.3720373,38.7525727 38.8983932,36.966894 39.4285688,36.1744421 C39.9602724,35.3804691 40.4904481,35.512798 41.2207765,35.7774556 C41.9511049,36.0405922 45.8655432,37.9585997 46.6615706,38.3555862 C47.4575981,38.7525727 47.9893016,38.9503054 48.1879265,39.2803669 C48.3865514,39.6119495 48.3865514,41.1983744 47.7234499,43.0494569 C47.0588204,44.9005395 43.8090116,46.6846971 42.3483547,46.8170259 C42.2952399,46.8218379 42.2422464,46.8271688 42.189112,46.8328475 L42.0290247,46.850756 C40.6602396,47.0089406 39.0295689,47.2820712 32.7929696,44.8336146 C24.6997692,41.6562017 19.5905258,33.3970578 19.1917482,32.8692635 C18.7944984,32.3399482 15.9404115,28.5708582 15.9404115,24.6709604 C15.9404115,20.7710626 17.996943,18.8530551 18.7272715,18.0606032 C19.4575999,17.2681512 20.3193264,17.0688705 20.8510299,17.0688705 Z" fill="url(#wtlinearGradient-1)"></path></g></g></svg></a></div>
</div></div></div></div></div></div> ]]></content:encoded><pubDate>Mon, 24 Nov 2025 10:36:22 +0530</pubDate></item></channel></rss>