<?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/tag/sfmcemails/feed" rel="self" type="application/rss+xml"/><title>Peoplewoo - Blogs #SFMCEmails</title><description>Peoplewoo - Blogs #SFMCEmails</description><link>https://www.peoplewoo.com/blogs/tag/sfmcemails</link><lastBuildDate>Sat, 11 Apr 2026 11:59:41 +0530</lastBuildDate><generator>http://zoho.com/sites/</generator><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><item><title><![CDATA[Difference Between var, let & const in JavaScript | Peoplewoo Skills]]></title><link>https://www.peoplewoo.com/blogs/post/difference-between-var-let-const-in-javascript-peoplewoo-skills</link><description><![CDATA[ Understanding variable declarations in JavaScript is crucial for writing clean, predictable, and bug-free Lightning Web Components (LWC) and general ]]></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);">Understanding variable declarations in JavaScript is crucial for writing clean, predictable, and bug-free Lightning Web Components (LWC) and general JavaScript applications. JavaScript provides three ways to declare variables:&nbsp;<strong>var</strong>,&nbsp;<strong>let</strong>, and&nbsp;<strong>const</strong>. Although they look similar, they behave differently in terms of scope, redeclaration, hoisting, and mutability.</span></p><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">What Are JavaScript Variables?</span></h2><p><span style="color:rgb(0, 0, 0);">Variables are used to store data values. In LWC and modern JavaScript,&nbsp;<strong>let</strong>&nbsp;and&nbsp;<strong>const</strong>&nbsp;are recommended, while&nbsp;<strong>var</strong>&nbsp;is considered outdated due to its unpredictable scope behavior.</span></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_e3UDKVGR2L3l2NSK1y9Ryg" data-element-type="video" class="zpelement zpelem-video "><style type="text/css"> @media (max-width: 767px) { [data-element-id="elm_e3UDKVGR2L3l2NSK1y9Ryg"].zpelem-video iframe.zpvideo{ width:560px !important; height:315px !important; } } @media all and (min-width: 768px) and (max-width:991px){ [data-element-id="elm_e3UDKVGR2L3l2NSK1y9Ryg"].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/_pWc1YatUMY?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><h2><span style="color:rgb(0, 0, 0);">Quick Comparison Table</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);">Feature</span></th><th><span style="color:rgb(0, 0, 0);">var</span></th><th><span style="color:rgb(0, 0, 0);">let</span></th><th><span style="color:rgb(0, 0, 0);">const</span></th></tr><tr><td><span style="color:rgb(0, 0, 0);">Scope</span></td><td><span style="color:rgb(0, 0, 0);">Function Scope</span></td><td><span style="color:rgb(0, 0, 0);">Block Scope</span></td><td><span style="color:rgb(0, 0, 0);">Block Scope</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">Redeclaration</span></td><td><span style="color:rgb(0, 0, 0);">Allowed</span></td><td><span style="color:rgb(0, 0, 0);">Not Allowed</span></td><td><span style="color:rgb(0, 0, 0);">Not Allowed</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">Reassignment</span></td><td><span style="color:rgb(0, 0, 0);">Allowed</span></td><td><span style="color:rgb(0, 0, 0);">Allowed</span></td><td><span style="color:rgb(0, 0, 0);">Not Allowed</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">Hoisting</span></td><td><span style="color:rgb(0, 0, 0);">Hoisted (initialized as undefined)</span></td><td><span style="color:rgb(0, 0, 0);">Hoisted but in Temporal Dead Zone</span></td><td><span style="color:rgb(0, 0, 0);">Hoisted but in Temporal Dead Zone</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">Best Use Case</span></td><td><span style="color:rgb(0, 0, 0);">Avoid using in modern JS</span></td><td><span style="color:rgb(0, 0, 0);">For variables that change</span></td><td><span style="color:rgb(0, 0, 0);">For constants, arrays, objects</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);">1. <code>var</code> – Function-Scoped (Old JavaScript)</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);"> Variables declared using <strong>var</strong> are function-scoped. That means they are accessible anywhere inside the function. However, <strong>var</strong> ignores block scope, leading to unexpected behavior. </span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><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);"> if (true) {     var x = 10; } console.log(x); // Output: 10 (not block scoped) </span></pre><p><span style="color:rgb(0, 0, 0);"> This can cause bugs in LWC or modern JavaScript apps because variables may leak outside their intended scope.</span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h2><span style="color:rgb(0, 0, 0);">2. <code>let</code> – Block Scoped (Modern &amp; Recommended)</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);"> Variables declared using <strong>let</strong> are block-scoped, meaning they exist only inside <code>{ }</code>. </span></p><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);"> if (true) {     let y = 20; } console.log(y); // Error: y is not defined </span></pre><p><span style="color:rgb(0, 0, 0);"> This prevents accidental variable leakage, making code cleaner and safer. <strong>Let</strong> allows reassignment, so it is best for values that change over time. </span></p><p></p><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">3. <code>const</code> – Block Scoped Constant</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);"> Variables declared using <strong>const</strong> must be initialized and cannot be reassigned. However, for arrays and objects, the reference is constant, but the internal values can change. </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);"> const user = { name: &quot;Amit&quot; }; user.name = &quot;Rahul&quot;; // Allowed user = {};  </span></pre><pre><span style="color:rgb(0, 0, 0);">         // Not Allowed (reassignment error) </span></pre><p><span style="color:rgb(0, 0, 0);"> This makes <strong>const</strong> ideal for storing stable values or complex data structures. </span></p><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">Hoisting Difference</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);"> All three (<strong>var</strong>, <strong>let</strong>, <strong>const</strong>) are hoisted. But only <strong>var</strong> is initialized as <em>undefined</em>, while <strong>let</strong> and <strong>const</strong> remain in the <strong>Temporal Dead Zone (TDZ)</strong> until execution reaches their declaration. </span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><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);"> console.log(a); // undefined console.log(b); // Error console.log(c); </span></pre><pre><span style="color:rgb(0, 0, 0);">// Error var a = 1; let b = 2; const c = 3; </span></pre><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">Real-Life Example in 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);"> When building LWCs, <strong>let</strong> and <strong>const</strong> help you write predictable, error-free code. </span></p><pre><span style="color:rgb(0, 0, 0);"> import { LightningElement } from 'lwc'; </span></pre><pre><span style="color:rgb(0, 0, 0);">export default class Sample extends LightningElement</span></pre><pre><span style="color:rgb(0, 0, 0);"> {     message = 'Hello';     handleClick()</span></pre><pre><span style="color:rgb(0, 0, 0);"> {         let count = 5;         const pi = 3.14;         count = 10; </span></pre><pre><span style="color:rgb(0, 0, 0);">  // allowed         // pi = 4;   </span></pre><pre><span style="color:rgb(0, 0, 0);"> // not allowed         console.log(count);     } } </span></pre><p><span style="color:rgb(0, 0, 0);"> Using <strong>var</strong> in LWC can lead to scope-related bugs and is strongly discouraged. </span></p><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">Best Practices</span></h2><ul><li><span style="color:rgb(0, 0, 0);">Avoid <strong>var</strong> in modern JavaScript and LWC.</span></li><li><span style="color:rgb(0, 0, 0);">Use <strong>let</strong> for variables that change over time.</span></li><li><span style="color:rgb(0, 0, 0);">Use <strong>const</strong> for constants, arrays, and objects.</span></li><li><span style="color:rgb(0, 0, 0);">Name constants in uppercase (optional but recommended).</span></li><li><span style="color:rgb(0, 0, 0);">Always initialize variables close to where they are used.</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. Should we use var in LWC?" data-content-id="elm_X8MB5lkAUEcGoYBtGrpljg" style="margin-top:0;" tabindex="0" role="button" aria-label="1. Should we use var in LWC?"><span class="zpaccordion-name">1. Should we use var 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><div><div><p><span style="color:rgb(0, 0, 0);"><span></span></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);">No.&nbsp;<strong>var</strong>&nbsp;can cause scope leakage and unpredictable behavior. Use&nbsp;<strong>let</strong>&nbsp;or&nbsp;<strong>const</strong>&nbsp;instead.</span></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 we reassign a const variable?" data-content-id="elm_HWiLrHq626LLO7HEwZZO0A" style="margin-top:0;" tabindex="0" role="button" aria-label="2. Can we reassign a const variable?"><span class="zpaccordion-name">2. Can we reassign a const variable?</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>No. You can modify properties of arrays/objects but cannot reassign the variable itself.</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 Temporal Dead Zone?" data-content-id="elm_G0J2WJbaranPy8N5RGud_Q" style="margin-top:0;" tabindex="0" role="button" aria-label="3. What is the Temporal Dead Zone?"><span class="zpaccordion-name">3. What is the Temporal Dead Zone?</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>The period between variable hoisting and initialization where&nbsp;<strong>let</strong>&nbsp;and&nbsp;<strong>const</strong>&nbsp;cannot be accessed.</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. Does let support block scoping?" data-content-id="elm_VCfqx-I0okQtrLLtQgg6uQ" style="margin-top:0;" tabindex="0" role="button" aria-label="4. Does let support block scoping?"><span class="zpaccordion-name">4. Does let support block scoping?</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><span style="color:rgb(0, 0, 0);"><p></p><div><p></p><div><p></p><div><p>Yes.&nbsp;<strong>let</strong>&nbsp;variables exist only inside the block&nbsp;<code>{ }</code>&nbsp;where they are defined.</p></div><p></p></div><p></p></div><p></p></span></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><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. Which declaration is best for performance?" data-content-id="elm_ytAT6ZF-UgNskNSKR7FuZQ" style="margin-top:0;" tabindex="0" role="button" aria-label="5. Which declaration is best for performance?"><span class="zpaccordion-name">5. Which declaration is best for performance?</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><span style="color:rgb(0, 0, 0);"><span><strong>const</strong>&nbsp;is recommended whenever possible because it prevents reassignment and makes code more predictable.</span></span></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>Sun, 23 Nov 2025 17:57:45 +0530</pubDate></item><item><title><![CDATA[Basics of JavaScript for LWC | Peoplewoo Skills]]></title><link>https://www.peoplewoo.com/blogs/post/basics-of-javascript-for-lwc-peoplewoo-skills2</link><description><![CDATA[ JavaScript is the backbone of Lightning Web Components (LWC). Before you start building components, it’s important to understand the core JavaScript ]]></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><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></section><section><p><span style="color:rgb(0, 0, 0);"></span></p><div><br/><h2>Why JavaScript Matters in LWC</h2><p>LWC is built on modern web standards, and JavaScript plays a major role in:</p><ul><li>Handling component logic</li><li>Reacting to user input</li><li>Fetching data from Apex and Salesforce APIs</li><li>Manipulating component state</li><li>Rendering dynamic content</li></ul></div><br/><p></p></section></div><section><p></p></section></div><p><span style="color:rgb(0, 0, 0);"><br/></span></p></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_JIoJWEmYXJm-syyaFkkofw" data-element-type="video" class="zpelement zpelem-video "><style type="text/css"> @media (max-width: 767px) { [data-element-id="elm_JIoJWEmYXJm-syyaFkkofw"].zpelem-video iframe.zpvideo{ width:560px !important; height:315px !important; } } @media all and (min-width: 768px) and (max-width:991px){ [data-element-id="elm_JIoJWEmYXJm-syyaFkkofw"].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/FixcRszeP6w?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><span style="color:rgb(0, 0, 0);"><br/></span></p><ul></ul><h2><span style="color:rgb(0, 0, 0);">Key JavaScript Concepts You Must Know for LWC</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><h3><span style="color:rgb(0, 0, 0);">1. Variables (let, const, var)</span></h3><p><span style="color:rgb(0, 0, 0);"> In LWC, you will mostly use <strong>let</strong> and <strong>const</strong>. </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);">Keyword</span></th><th><span style="color:rgb(0, 0, 0);">Use Case</span></th></tr><tr><td><span style="color:rgb(0, 0, 0);">let</span></td><td><span style="color:rgb(0, 0, 0);">For values that can change</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">const</span></td><td><span style="color:rgb(0, 0, 0);">For values that should not change</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">var</span></td><td><span style="color:rgb(0, 0, 0);">Not recommended in modern JavaScript</span></td></tr></tbody></table><pre><span style="color:rgb(0, 0, 0);"> let name = 'Peoplewoo'; const course = 'LWC Basics'; </span></pre><hr/><h3><span style="color:rgb(0, 0, 0);"><br/></span></h3><h3><span style="color:rgb(0, 0, 0);">2. Data Types</span></h3><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);"> JavaScript supports both primitive and non-primitive data types. </span></p><table border="1" cellpadding="8" cellspacing="0"><tbody><tr><th><span style="color:rgb(0, 0, 0);">Type</span></th><th><span style="color:rgb(0, 0, 0);">Example</span></th></tr><tr><td><span style="color:rgb(0, 0, 0);">String</span></td><td><span style="color:rgb(0, 0, 0);">&quot;Hello World&quot;</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">Number</span></td><td><span style="color:rgb(0, 0, 0);">100, 45.67</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">Boolean</span></td><td><span style="color:rgb(0, 0, 0);">true / false</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">Array</span></td><td><span style="color:rgb(0, 0, 0);">[1,2,3]</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">Object</span></td><td><span style="color:rgb(0, 0, 0);">{name:&quot;Jeet&quot;, role:&quot;Admin&quot;}</span></td></tr></tbody></table><hr/><h3><span style="color:rgb(0, 0, 0);"><br/></span></h3><h3><span style="color:rgb(0, 0, 0);">3. Functions in JavaScript</span></h3><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);"> Functions allow you to reuse logic. In LWC, functions are used for calculations, events, and data handling. </span></p><pre><span style="color:rgb(0, 0, 0);"> // Normal function function greet(){     return 'Hello Learner'; } </span></pre><pre><span style="color:rgb(0, 0, 0);">// Arrow function const greetUser = () =&gt; 'Welcome to Peoplewoo Skills'; </span></pre><pre></pre><h3><span style="color:rgb(0, 0, 0);"><br/></span></h3><h3><span style="color:rgb(0, 0, 0);">4. Classes and Export</span></h3><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);"> Every LWC uses a JavaScript class that extends <strong>LightningElement</strong>. </span></p><pre><span style="color:rgb(0, 0, 0);"> import { LightningElement } from 'lwc'; export default class </span></pre><pre><span style="color:rgb(0, 0, 0);">MyComponent extends LightningElement {     message = 'Hello from LWC';     </span></pre><pre><span style="color:rgb(0, 0, 0);">changeMessage() {         this.message = 'Updated!';     } } </span></pre><h3><span style="color:rgb(0, 0, 0);"><br/></span></h3><h3><span style="color:rgb(0, 0, 0);">5. Template Binding</span></h3><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);"> JavaScript variables are directly used inside HTML templates using curly braces <strong>{}</strong>. </span></p><pre><span style="color:rgb(0, 0, 0);"> message = 'LWC is powerful!'; </span></pre><p><span style="color:rgb(0, 0, 0);"> &nbsp;HTML: </span></p><pre><span style="color:rgb(0, 0, 0);"> &lt;template&gt;     &lt;p&gt;{message}&lt;/p&gt; &lt;/template&gt; </span></pre><pre><span style="color:rgb(0, 0, 0);"><br/></span></pre><h3><span style="color:rgb(0, 0, 0);">6. Event Handling</span></h3><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);"> Events allow JS to react to user actions like button clicks. </span></p><pre><span style="color:rgb(0, 0, 0);"> handleClick() {      } </span></pre><p><span style="color:rgb(0, 0, 0);"> HTML: </span></p><pre><span style="color:rgb(0, 0, 0);"> &lt;button&gt;Click Me&lt;/button&gt; </span></pre><h3><span style="color:rgb(0, 0, 0);"><br/></span></h3><h3><span style="color:rgb(0, 0, 0);">7. Arrays &amp; Objects</span></h3><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);"> Used to store and manipulate multiple values. </span></p><pre><span style="color:rgb(0, 0, 0);"> // Array example let fruits = ['Apple', 'Banana', 'Grapes']; </span></pre><pre><span style="color:rgb(0, 0, 0);">// Object example let user = {     name: 'Jeet',     role: 'Developer' }; </span></pre><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">Real-Life LWC Example Using JavaScript</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);"> Imagine creating a component that displays student names. The data is stored in a JavaScript array and displayed in HTML using a loop. </span></p><pre><span style="color:rgb(0, 0, 0);"> students = ['Amit', 'Priya', 'Rohan']; </span></pre><p><span style="color:rgb(0, 0, 0);"> HTML: </span></p><pre><span style="color:rgb(0, 0, 0);"> &lt;template&gt;     &lt;template for:each={students} for:item=&quot;std&quot;&gt;  </span></pre><pre><span style="color:rgb(0, 0, 0);">       &lt;p key=&quot;{std}&quot;&gt;{std}&lt;/p&gt;     &lt;/template&gt; &lt;/template&gt; </span></pre><p><span style="color:rgb(0, 0, 0);"> This is how JavaScript powers dynamic rendering in LWC. </span></p><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">Best Practices for JavaScript in LWC</span></h2><ul><li><span style="color:rgb(0, 0, 0);">Use <strong>let</strong> and <strong>const</strong>, avoid var</span></li><li><span style="color:rgb(0, 0, 0);">Break logic into small functions</span></li><li><span style="color:rgb(0, 0, 0);">Use proper naming conventions</span></li><li><span style="color:rgb(0, 0, 0);">Avoid mutating objects directly when possible</span></li><li><span style="color:rgb(0, 0, 0);">Always follow ES6+ JavaScript standards</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. Do I need to master JavaScript before learning LWC?" data-content-id="elm_X8MB5lkAUEcGoYBtGrpljg" style="margin-top:0;" tabindex="0" role="button" aria-label="1. Do I need to master JavaScript before learning LWC?"><span class="zpaccordion-name">1. Do I need to master JavaScript before learning 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><div><div><p><span style="color:rgb(0, 0, 0);"><span></span></span></p><div><p>Yes, at least basic JavaScript concepts are required to build and understand LWC components.</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 JavaScript version does LWC use?" data-content-id="elm_HWiLrHq626LLO7HEwZZO0A" style="margin-top:0;" tabindex="0" role="button" aria-label="2. Which JavaScript version does LWC use?"><span class="zpaccordion-name">2. Which JavaScript version does LWC use?</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>LWC uses modern ES6+ JavaScript features such as classes, modules, arrow functions, and imports.</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 I use external JavaScript libraries in LWC?" data-content-id="elm_G0J2WJbaranPy8N5RGud_Q" style="margin-top:0;" tabindex="0" role="button" aria-label="3. Can I use external JavaScript libraries in LWC?"><span class="zpaccordion-name">3. Can I use external JavaScript 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_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);">Yes, but they must be uploaded as Static Resources in Salesforce.</span></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. Are arrow functions required in LWC?" data-content-id="elm_VCfqx-I0okQtrLLtQgg6uQ" style="margin-top:0;" tabindex="0" role="button" aria-label="4. Are arrow functions required in LWC?"><span class="zpaccordion-name">4. Are arrow functions required 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><span style="color:rgb(0, 0, 0);"><p></p><div><p></p><div><p>Not required, but arrow functions are preferred because they maintain lexical&nbsp;<strong>this</strong>&nbsp;binding.</p></div><p></p></div><p></p></span></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><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. Does LWC support async and await?" data-content-id="elm_ytAT6ZF-UgNskNSKR7FuZQ" style="margin-top:0;" tabindex="0" role="button" aria-label="5. Does LWC support async and await?"><span class="zpaccordion-name">5. Does LWC support async and await?</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><span style="color:rgb(0, 0, 0);">Yes, asynchronous JavaScript (async/await, promises) is fully supported in LWC.</span></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);"><br/></span></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><span style="color:rgb(0, 0, 0);"></span></div></div></div></div></div></div></div></div></div><div><p><span style="color:rgb(0, 0, 0);">JavaScript is the foundation of every Lightning Web Component. By understanding variables, functions, classes, and data handling, you can build dynamic and powerful LWCs with ease. Keep practicing JS basics, and you’ll quickly become confident in developing LWC applications.</span></p><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>Sun, 23 Nov 2025 17:12:20 +0530</pubDate></item><item><title><![CDATA[Components of the LWC Bundle | Peoplewoo Skills]]></title><link>https://www.peoplewoo.com/blogs/post/components-of-the-lwc-bundle-peoplewoo-skills</link><description><![CDATA[ Lightning Web Components (LWC) is Salesforce’s modern JavaScript-based framework designed for building fast, efficient, and reusable UI components. E ]]></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><span style="color:rgb(0, 0, 0);"></span></p></section><div><p><span style="color:rgb(0, 0, 0);">Lightning Web Components (LWC) is Salesforce’s modern JavaScript-based framework designed for building fast, efficient, and reusable UI components. Every LWC you create is made up of a collection of files known as the&nbsp;<strong>LWC Bundle</strong>. Understanding these files is essential for any Salesforce developer working with Lightning experiences.</span></p><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">What Is an LWC Bundle?</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);">An LWC Bundle is a folder that contains all the files required for a Lightning Web Component to function. Each file in the bundle has a specific role—such as defining the UI, handling logic, styling the component, configuring metadata, or exposing the component for use in Lightning App Builder.</span></p><p><span style="color:rgb(0, 0, 0);">Below is a detailed breakdown of each file present in an LWC bundle along with its purpose and example use cases.</span></p></div><section><p></p></section></div><section><p></p></section></div><p><span style="color:rgb(0, 0, 0);"><br/></span></p></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_gx9WBNuLnid-pvJFs2GwZA" data-element-type="video" class="zpelement zpelem-video "><style type="text/css"> @media (max-width: 767px) { [data-element-id="elm_gx9WBNuLnid-pvJFs2GwZA"].zpelem-video iframe.zpvideo{ width:560px !important; height:315px !important; } } @media all and (min-width: 768px) and (max-width:991px){ [data-element-id="elm_gx9WBNuLnid-pvJFs2GwZA"].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/W1NIwiZdBsk?enablejsapi=1" frameborder="0" allowfullscreen id=youtube-video-1 data-api=youtube></iframe></div>
</div><div data-element-id="elm_B0yZZ8dS4pgJgpGcEmRv_Q" 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);">Main Components of the LWC Bundle</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);">File Name</span></th><th><span style="color:rgb(0, 0, 0);">Extension</span></th><th><span style="color:rgb(0, 0, 0);">Purpose</span></th></tr><tr><td><span style="color:rgb(0, 0, 0);">HTML Template</span></td><td><span style="color:rgb(0, 0, 0);">.html</span></td><td><span style="color:rgb(0, 0, 0);">Defines the UI, structure, and layout of the component.</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">JavaScript Controller</span></td><td><span style="color:rgb(0, 0, 0);">.js</span></td><td><span style="color:rgb(0, 0, 0);">Handles the component's logic, events, and interactions.</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">Meta Configuration</span></td><td><span style="color:rgb(0, 0, 0);">.js-meta.xml</span></td><td><span style="color:rgb(0, 0, 0);">Declares where the component can be used (App Builder, Record Page, Community, etc.).</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">Styling File</span></td><td><span style="color:rgb(0, 0, 0);">.css</span></td><td><span style="color:rgb(0, 0, 0);">Applies component-specific styling.</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">SVG Icon</span></td><td><span style="color:rgb(0, 0, 0);">.svg</span></td><td><span style="color:rgb(0, 0, 0);">Used as the component icon in App Builder.</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">Documentation</span></td><td><span style="color:rgb(0, 0, 0);">.md</span></td><td><span style="color:rgb(0, 0, 0);">Provides notes or instructions for other developers.</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">Unit Test File</span></td><td><span style="color:rgb(0, 0, 0);">.test.js</span></td><td><span style="color:rgb(0, 0, 0);">Jest test cases to validate component functionality.</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);">Detailed Explanation of Each Bundle File</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><h3><span style="color:rgb(0, 0, 0);">1. <strong>HTML File (.html)</strong></span></h3><p><span style="color:rgb(0, 0, 0);"> This file defines the visual part of the component using standard HTML and template syntax. You can include loops, conditions, data binding, and event handlers. </span></p><pre><span style="color:rgb(0, 0, 0);"> Example: &lt;template&gt;     &lt;h1&gt;Hello {name}!&lt;/h1&gt; &lt;/template&gt; </span></pre><h3><span style="color:rgb(0, 0, 0);"><br/></span></h3><h3><span style="color:rgb(0, 0, 0);">2. <strong>JavaScript File (.js)</strong></span></h3><div><strong style="color:rgb(0, 0, 0);"><br/></strong></div><p><span style="color:rgb(0, 0, 0);"> The JavaScript file controls the component’s logic. It handles user actions, data fetching, wire adapters, event dispatching, and computations. </span></p><pre><span style="color:rgb(0, 0, 0);"> import { LightningElement, track } from 'lwc'; export default</span></pre><pre><span style="color:rgb(0, 0, 0);"> class HelloWorld extends LightningElement {     name = 'Peoplewoo Skills'; } </span></pre><h3><span style="color:rgb(0, 0, 0);"><br/></span></h3><h3><span style="color:rgb(0, 0, 0);">3. <strong>Meta XML File (.js-meta.xml)</strong></span></h3><div><strong style="color:rgb(0, 0, 0);"><br/></strong></div><p><span style="color:rgb(0, 0, 0);"> The meta configuration file defines where the component can be used and whether it is exposed to Lightning App Builder. </span></p><pre><span style="color:rgb(0, 0, 0);"> &lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;LightningComponentBundle&gt;   </span></pre><pre><span style="color:rgb(0, 0, 0);">  &lt;apiVersion&gt;60.0&lt;/apiVersion&gt;     &lt;isExposed&gt;true&lt;/isExposed&gt; </span></pre><pre><span style="color:rgb(0, 0, 0);">    &lt;targets&gt;         &lt;target&gt;lightning__RecordPage&lt;/target&gt;     </span></pre><pre><span style="color:rgb(0, 0, 0);">    &lt;target&gt;lightning__AppPage&lt;/target&gt;   </span></pre><pre><span style="color:rgb(0, 0, 0);">  &lt;/targets&gt; &lt;/LightningComponentBundle&gt; </span></pre><h3><span style="color:rgb(0, 0, 0);"><br/></span></h3><h3><span style="color:rgb(0, 0, 0);">4. <strong>CSS File (.css)</strong></span></h3><div><strong style="color:rgb(0, 0, 0);"><br/></strong></div><p><span style="color:rgb(0, 0, 0);"> Used to style your component. LWC offers component-level style isolation. </span></p><pre><span style="color:rgb(0, 0, 0);"> .example {     color: blue; } </span></pre><pre><span style="color:rgb(0, 0, 0);"><br/></span></pre><h3><span style="color:rgb(0, 0, 0);">5. <strong>SVG Icon (.svg)</strong></span></h3><div><strong style="color:rgb(0, 0, 0);"><br/></strong></div><p><span style="color:rgb(0, 0, 0);"> This file represents the component’s icon in App Builder or Experience Cloud.</span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h3><span style="color:rgb(0, 0, 0);">6. <strong>Documentation File (.md)</strong></span></h3><div><strong style="color:rgb(0, 0, 0);"><br/></strong></div><p><span style="color:rgb(0, 0, 0);"> Provides notes, instructions, and helpful tips for developers. Not required, but useful for teams.</span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h3><span style="color:rgb(0, 0, 0);">7. <strong>Jest Test File (.test.js)</strong></span></h3><div><strong style="color:rgb(0, 0, 0);"><br/></strong></div><p><span style="color:rgb(0, 0, 0);"> Contains unit test scripts written using Jest. Helps ensure your component works as expected. </span></p><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">Real-Life Example: How the LWC Bundle Works in a Project</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);"> Imagine you’re building a component that displays a list of Salesforce Contacts based on user selection. The HTML handles UI, the JS fetches Contact records via Apex, CSS styles the list, and the Meta file makes the component available on the Lightning Home Page. Together, these files create a complete and deployable LWC. </span></p><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">Why LWC Bundle Structure Matters</span></h2><ul><li><span style="color:rgb(0, 0, 0);">Improves code organization</span></li><li><span style="color:rgb(0, 0, 0);">Allows modular development</span></li><li><span style="color:rgb(0, 0, 0);">Enhances reusability</span></li><li><span style="color:rgb(0, 0, 0);">Makes deployment and testing easier</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. What is included in an LWC bundle?" data-content-id="elm_X8MB5lkAUEcGoYBtGrpljg" style="margin-top:0;" tabindex="0" role="button" aria-label="1. What is included in an LWC bundle?"><span class="zpaccordion-name">1. What is included in an LWC bundle?</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><div>An LWC bundle includes HTML, JS, Meta XML, CSS, SVG, Documentation, and Test files. Each file has a specific purpose.</div></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. Is the meta XML file mandatory?" data-content-id="elm_HWiLrHq626LLO7HEwZZO0A" style="margin-top:0;" tabindex="0" role="button" aria-label="2. Is the meta XML file mandatory?"><span class="zpaccordion-name">2. Is the meta XML file mandatory?</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><div>Yes, the &lt;strong&gt;.js-meta.xml&lt;/strong&gt; file is required. Without it, Salesforce cannot identify how and where to use your component.</div></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. Do I need an SVG file?" data-content-id="elm_G0J2WJbaranPy8N5RGud_Q" style="margin-top:0;" tabindex="0" role="button" aria-label="3. Do I need an SVG file?"><span class="zpaccordion-name">3. Do I need an SVG file?</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></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></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><span style="color:rgb(0, 0, 0);"><p></p><div><div><div>The SVG file is optional, but recommended if you want a custom icon in Lightning App Builder.</div></div></div><p></p></span></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><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_MrzO9Mu2yvjD1yOveoN1ag" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="4. Can I write tests for LWC?" data-content-id="elm_VCfqx-I0okQtrLLtQgg6uQ" style="margin-top:0;" tabindex="0" role="button" aria-label="4. Can I write tests for LWC?"><span class="zpaccordion-name">4. Can I write tests 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><span style="color:rgb(0, 0, 0);"><p></p><div><p></p><div><div>Yes, Salesforce supports Jest testing for LWCs using the &lt;strong&gt;.test.js&lt;/strong&gt; file.</div></div><p></p></div><p></p></span></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><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. Are CSS styles isolated in LWC?" data-content-id="elm_ytAT6ZF-UgNskNSKR7FuZQ" style="margin-top:0;" tabindex="0" role="button" aria-label="5. Are CSS styles isolated in LWC?"><span class="zpaccordion-name">5. Are CSS styles isolated 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"><section><p><span style="color:rgb(0, 0, 0);"></span></p><div><main><section><p></p><div><section><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><div><span style="color:rgb(0, 0, 0);">Yes. LWC styles apply only to that component (Shadow DOM), preventing unwanted styling conflicts.</span></div></div><p></p></div><p></p></section></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);"><br/></span></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><span style="color:rgb(0, 0, 0);"></span></div></div></div></div></div></div></div></div></div><div><p><span style="color:rgb(0, 0, 0);">Understanding the components of an LWC bundle is the first step toward becoming a skilled Salesforce developer. Each file plays a critical role in building efficient, modular, and scalable Lightning Web Components. With this knowledge, you're ready to start building real-world LWC projects and enhancing your Salesforce expertise.</span></p><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>Fri, 21 Nov 2025 11:11:45 +0530</pubDate></item><item><title><![CDATA[Lifecycle Hooks in LWC & Basic Demo | Peoplewoo Skills]]></title><link>https://www.peoplewoo.com/blogs/post/lifecycle-hooks-in-lwc-basic-demo-peoplewoo-skills</link><description><![CDATA[ Lightning Web Components (LWC) follow a predictable lifecycle—starting from creation, rendering, re-rendering, and ending with component destruction. ]]></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);">Lightning Web Components (LWC) follow a predictable lifecycle—starting from creation, rendering, re-rendering, and ending with component destruction. Understanding these lifecycle hooks is essential for controlling behavior, calling APIs at the right time, improving performance, and building stable applications.</span></p><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">What Are Lifecycle Hooks in LWC?</span></h2><p><span style="color:rgb(0, 0, 0);">Lifecycle Hooks are predefined callback methods in JavaScript that execute automatically at specific stages of a component’s life. These hooks allow developers to:</span></p><ul><li><span style="color:rgb(0, 0, 0);">Initialize data</span></li><li><span style="color:rgb(0, 0, 0);">Call Apex methods</span></li><li><span style="color:rgb(0, 0, 0);">Handle DOM-related logic</span></li><li><span style="color:rgb(0, 0, 0);">Clean up event listeners</span></li></ul></div><p></p></section></div></div><p><span style="color:rgb(0, 0, 0);"><br/></span></p></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_CYJt0Sy_cVApwsjbGC9hLg" data-element-type="video" class="zpelement zpelem-video "><style type="text/css"> @media (max-width: 767px) { [data-element-id="elm_CYJt0Sy_cVApwsjbGC9hLg"].zpelem-video iframe.zpvideo{ width:560px !important; height:315px !important; } } @media all and (min-width: 768px) and (max-width:991px){ [data-element-id="elm_CYJt0Sy_cVApwsjbGC9hLg"].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/ET9pM1iGuXI?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><span style="font-family:Poppins, sans-serif;font-size:40px;font-weight:600;color:rgb(0, 0, 0);">List of Lifecycle Hooks in LWC</span></p><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);">Lifecycle Hook</span></th><th><span style="color:rgb(0, 0, 0);">When It Runs</span></th></tr><tr><td><span style="color:rgb(0, 0, 0);">constructor()</span></td><td><span style="color:rgb(0, 0, 0);">When the component instance is created</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">connectedCallback()</span></td><td><span style="color:rgb(0, 0, 0);">When the component is inserted into the DOM</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">renderedCallback()</span></td><td><span style="color:rgb(0, 0, 0);">After the component is rendered</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">disconnectedCallback()</span></td><td><span style="color:rgb(0, 0, 0);">When the component is removed from the DOM</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">errorCallback()</span></td><td><span style="color:rgb(0, 0, 0);">Handles errors thrown in child components</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);">1. constructor()</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);"> The first hook executed when an LWC component instance is created. Best used for initializing basic variables. </span></p><pre><span style="color:rgb(0, 0, 0);"> constructor() {     super();     console.log('Constructor called!'); } </span></pre><p><span style="color:rgb(0, 0, 0);"><strong>Restrictions:</strong> You cannot access DOM elements here.</span></p><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">2. connectedCallback()</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);"> Called when the component is inserted into the DOM. Use it to: </span></p><ul><li><span style="color:rgb(0, 0, 0);">Call Apex methods</span></li><li><span style="color:rgb(0, 0, 0);">Initialize data</span></li><li><span style="color:rgb(0, 0, 0);">Register event listeners</span></li></ul><pre><span style="color:rgb(0, 0, 0);"> connectedCallback() {     console.log('Component loaded in DOM'); } </span></pre><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">3. renderedCallback()</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);"> Executes every time the component renders or re-renders. Use this for DOM manipulation. </span></p><pre><span style="color:rgb(0, 0, 0);"> renderedCallback() {     console.log('Component rendered!'); } </span></pre><p><span style="color:rgb(0, 0, 0);"><strong>Note:</strong> It may run multiple times, so avoid heavy logic here.</span></p><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">4. disconnectedCallback()</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);"> Triggered when a component is removed from the DOM. Used for cleanup work. </span></p><pre><span style="color:rgb(0, 0, 0);"> disconnectedCallback() {     console.log('Component removed!'); } </span></pre><p><span style="color:rgb(0, 0, 0);"> Examples of cleanup: </span></p><ul><li><span style="color:rgb(0, 0, 0);">Removing event listeners</span></li><li><span style="color:rgb(0, 0, 0);">Clearing timers</span></li><li><span style="color:rgb(0, 0, 0);">Unsubscribing from events</span></li></ul><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">5. errorCallback(error, stack)</span></h2><p><span style="color:rgb(0, 0, 0);"> Captures errors from child components. </span></p><pre><span style="color:rgb(0, 0, 0);"> errorCallback(error, stack) {     console.error('Error:', error);   </span></pre><pre><span style="color:rgb(0, 0, 0);">  console.log('Stack:', stack); } </span></pre><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">Basic Demo of Lifecycle Hooks</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);">Below is a simple LWC example demonstrating all lifecycle hooks:</span></p><pre><span style="color:rgb(0, 0, 0);"> import { LightningElement } from 'lwc'; export default class LifecycleDemo</span></pre><pre><span style="color:rgb(0, 0, 0);"> extends LightningElement {     constructor() {         super();       </span></pre><pre><span style="color:rgb(0, 0, 0);">  console.log('Constructor executed');     }     connectedCallback() </span></pre><pre><span style="color:rgb(0, 0, 0);">{         console.log('connectedCallback executed');     }     </span></pre><pre><span style="color:rgb(0, 0, 0);">renderedCallback() {         console.log('renderedCallback executed'); </span></pre><pre><span style="color:rgb(0, 0, 0);">    }     disconnectedCallback() {        </span></pre><pre><span style="color:rgb(0, 0, 0);"> console.log('disconnectedCallback executed');     } </span></pre><pre><span style="color:rgb(0, 0, 0);">    errorCallback(error, stack)</span></pre><pre><span style="color:rgb(0, 0, 0);"> {         console.log('Error caught:', error);     } } </span></pre><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">Real-Life Use Case</span></h2><h3><span style="color:rgb(0, 0, 0);"><br/></span></h3><h3><span style="color:rgb(0, 0, 0);">Example: Fetching Account data when the component loads</span></h3><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);"> Developers often use <strong>connectedCallback()</strong> to fetch Apex data as soon as the component appears on the screen. </span></p><pre><span style="color:rgb(0, 0, 0);"> connectedCallback() {     getAccountList()         .then(result =&gt; </span></pre><pre><span style="color:rgb(0, 0, 0);">{             this.accounts = result;         })         .catch(error =&gt; </span></pre><pre><span style="color:rgb(0, 0, 0);">{             console.error(error);         }); } </span></pre><p><span style="color:rgb(0, 0, 0);"> This ensures the data loads before the user interacts with the component. </span></p><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 constructor only for variable initialization</span></li><li><span style="color:rgb(0, 0, 0);">Use connectedCallback for data fetching and event registration</span></li><li><span style="color:rgb(0, 0, 0);">Avoid heavy logic inside renderedCallback</span></li><li><span style="color:rgb(0, 0, 0);">Always clean up listeners in disconnectedCallback</span></li><li><span style="color:rgb(0, 0, 0);">Use errorCallback for debugging child components</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. Which lifecycle hook should I use for Apex calls?" data-content-id="elm_X8MB5lkAUEcGoYBtGrpljg" style="margin-top:0;" tabindex="0" role="button" aria-label="1. Which lifecycle hook should I use for Apex calls?"><span class="zpaccordion-name">1. Which lifecycle hook should I use for Apex calls?</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><span style="color:rgb(0, 0, 0);"><strong>connectedCallback()</strong>&nbsp;is best for Apex calls because it runs only once when the component is attached to the DOM.</span></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. Why does renderedCallback() run multiple times?" data-content-id="elm_HWiLrHq626LLO7HEwZZO0A" style="margin-top:0;" tabindex="0" role="button" aria-label="2. Why does renderedCallback() run multiple times?"><span class="zpaccordion-name">2. Why does renderedCallback() run multiple times?</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><div><p style="color:rgb(0, 0, 0);"><span></span></p><div><p></p><div><p><span style="color:rgb(0, 0, 0);">It executes every time the component re-renders, such as after value changes.</span></p></div><p></p></div></div><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 I access DOM elements in constructor()?" data-content-id="elm_G0J2WJbaranPy8N5RGud_Q" style="margin-top:0;" tabindex="0" role="button" aria-label="3. Can I access DOM elements in constructor()?"><span class="zpaccordion-name">3. Can I access DOM elements in constructor()?</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>No. DOM is not yet created during constructor execution.</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 the use of disconnectedCallback()?" data-content-id="elm_VCfqx-I0okQtrLLtQgg6uQ" style="margin-top:0;" tabindex="0" role="button" aria-label="4. What is the use of disconnectedCallback()?"><span class="zpaccordion-name">4. What is the use of disconnectedCallback()?</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><span style="color:rgb(0, 0, 0);"><p></p><div><p></p><div><p></p><div><p>It helps in cleanup — removing listeners, clearing intervals, and releasing memory.</p></div><p></p></div><p></p></div><p></p></span></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><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 handle errors coming from child components?" data-content-id="elm_ytAT6ZF-UgNskNSKR7FuZQ" style="margin-top:0;" tabindex="0" role="button" aria-label="5. How do I handle errors coming from child components?"><span class="zpaccordion-name">5. How do I handle errors coming from child components?</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><span style="color:rgb(0, 0, 0);"><div>Use&nbsp;<strong>errorCallback(error, stack)</strong>&nbsp;to capture and log errors.</div></span></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);"><br/></span></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);">Lifecycle hooks are essential for building efficient, reactive, and stable Lightning Web Components. Understanding when each hook executes allows you to structure logic correctly—whether fetching data, updating UI, or handling cleanup. Master these hooks to level up your LWC development skills.</span></p><div><span style="color:rgb(0, 0, 0);"><br/></span></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, 21 Nov 2025 10:10:32 +0530</pubDate></item><item><title><![CDATA[LWC Introduction | Lightning Web Components in Salesforce | Peoplewoo Skills]]></title><link>https://www.peoplewoo.com/blogs/post/lwc-introduction-lightning-web-components-in-salesforce-peoplewoo-skills</link><description><![CDATA[ Lightning Web Components (LWC) is Salesforce’s modern web development framework built on native browser standards. It allows developers to build fast ]]></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><span style="color:rgb(0, 0, 0);">Lightning Web Components (LWC) is Salesforce’s modern web development framework built on native browser standards. It allows developers to build fast, reusable, and high-performing UI components for Lightning Experience and Salesforce Mobile App.</span></p><p><span style="color:rgb(0, 0, 0);">In this blog, you’ll learn what LWC is, why it's important, its architecture, key features, real-life examples, and how beginners can get started.</span></p></section><section><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><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><section><p></p></section></div><p><span style="color:rgb(0, 0, 0);"><br/></span></p></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_9-1C_hUCbV_ZVfS0zQ0Uyw" data-element-type="video" class="zpelement zpelem-video "><style type="text/css"> @media (max-width: 767px) { [data-element-id="elm_9-1C_hUCbV_ZVfS0zQ0Uyw"].zpelem-video iframe.zpvideo{ width:560px !important; height:315px !important; } } @media all and (min-width: 768px) and (max-width:991px){ [data-element-id="elm_9-1C_hUCbV_ZVfS0zQ0Uyw"].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/rK30zYiIfC8?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><span style="color:rgb(0, 0, 0);">&nbsp; &nbsp;</span></p><section></section><section><h2><span style="color:rgb(0, 0, 0);">Why Did Salesforce Introduce LWC?</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
<p><span style="color:rgb(0, 0, 0);">Salesforce introduced LWC to align closer with modern web standards and improve the developer experience. Aura Components were powerful but required more Salesforce-specific syntax and were heavier.</span></p><h3><span style="color:rgb(0, 0, 0);"><br/></span></h3><h3><span style="color:rgb(0, 0, 0);">Key Reasons:</span></h3><div><span style="color:rgb(0, 0, 0);"><br/></span></div><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
<ul><li><span style="color:rgb(0, 0, 0);">To improve performance</span></li><li><span style="color:rgb(0, 0, 0);">To reduce framework overhead</span></li><li><span style="color:rgb(0, 0, 0);">To make Salesforce UI development more modern</span></li><li><span style="color:rgb(0, 0, 0);">To make components reusable and maintainable</span></li><li><span style="color:rgb(0, 0, 0);">To allow developers to use real JavaScript instead of proprietary syntax</span></li></ul></section><section><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">Architecture of Lightning Web Components</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
<p><span style="color:rgb(0, 0, 0);">LWC architecture is based on three key principles:</span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h3><span style="color:rgb(0, 0, 0);">1. Modern Browser Engine</span></h3><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
<p><span style="color:rgb(0, 0, 0);">Uses native APIs such as custom elements, templates, Shadow DOM, and ES modules, making it lightweight and speedy.</span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h3><span style="color:rgb(0, 0, 0);">2. Reactive Component Lifecycle</span></h3><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
<p><span style="color:rgb(0, 0, 0);">Whenever data changes, the UI automatically updates using a reactive rendering engine.</span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h3><span style="color:rgb(0, 0, 0);">3. Secure and Isolated Components</span></h3><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
<p><span style="color:rgb(0, 0, 0);">Each component runs inside shadow DOM, ensuring encapsulation and preventing styling conflicts.</span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p></section><section><h2><span style="color:rgb(0, 0, 0);">Key Features of LWC</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
<ul><li><span style="color:rgb(0, 0, 0);"><strong>Native JavaScript Support:</strong> Uses modern ES6+ JS features.</span></li><li><span style="color:rgb(0, 0, 0);"><strong>Shadow DOM:</strong> Scoped styling and DOM encapsulation.</span></li><li><span style="color:rgb(0, 0, 0);"><strong>Reactive Properties:</strong> UI updates automatically on data change.</span></li><li><span style="color:rgb(0, 0, 0);"><strong>Lightning Data Service:</strong> Easy, declarative Salesforce data access.</span></li><li><span style="color:rgb(0, 0, 0);"><strong>Events &amp; Communication:</strong> Parent-child communication using events.</span></li><li><span style="color:rgb(0, 0, 0);"><strong>Reusable Components:</strong> Build once, use anywhere.</span></li><li><span style="color:rgb(0, 0, 0);"><strong>High Performance:</strong> Lightweight and optimized for speed.</span></li></ul></section><section><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">Real-Life Use Cases of LWC</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
<p><span style="color:rgb(0, 0, 0);">LWC is useful in many Salesforce scenarios:</span></p><ul><li><span style="color:rgb(0, 0, 0);">Building custom UI in Lightning Record Pages</span></li><li><span style="color:rgb(0, 0, 0);">Creating dashboards and interactive charts</span></li><li><span style="color:rgb(0, 0, 0);">Developing guided selling or lead capture components</span></li><li><span style="color:rgb(0, 0, 0);">Creating forms, modals, and flows</span></li><li><span style="color:rgb(0, 0, 0);">Customizations for Salesforce Communities (Experience Cloud)</span></li><li><span style="color:rgb(0, 0, 0);">Integrating APIs and external services using Apex or fetch()</span></li></ul></section><section><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">How LWC Works Behind the Scenes</span></h2><h3><span style="color:rgb(0, 0, 0);">Step-by-Step Working:</span></h3><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
<ol><li><span style="color:rgb(0, 0, 0);">Developer writes HTML, JS, and CSS in a component folder</span></li><li><span style="color:rgb(0, 0, 0);">Browser reads ES modules and native web component syntax</span></li><li><span style="color:rgb(0, 0, 0);">Salesforce compiles and deploys the component into Lightning Runtime</span></li><li><span style="color:rgb(0, 0, 0);">Component receives data via @api, @track, or LDS</span></li><li><span style="color:rgb(0, 0, 0);">Browser renders UI using reactive rendering engine</span></li></ol><p><span style="color:rgb(0, 0, 0);">This native browser-powered architecture reduces processing time and improves performance drastically.</span></p></section><section><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">How to Create Your First LWC</span></h2><h3><span style="color:rgb(0, 0, 0);">Prerequisites:</span></h3><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
<ul><li><span style="color:rgb(0, 0, 0);">Salesforce DX</span></li><li><span style="color:rgb(0, 0, 0);">VS Code with Salesforce Extensions</span></li><li><span style="color:rgb(0, 0, 0);">Dev Hub enabled</span></li><li><span style="color:rgb(0, 0, 0);">Scratch Org or Sandbox</span></li></ul><h3><span style="color:rgb(0, 0, 0);"><br/></span></h3><h3><span style="color:rgb(0, 0, 0);">Steps:</span></h3><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
<ol><li><span style="color:rgb(0, 0, 0);">Open VS Code → Create a Salesforce Project</span></li><li><span style="color:rgb(0, 0, 0);">Right-click on the LWC folder → Create Lightning Web Component</span></li><li><span style="color:rgb(0, 0, 0);">Write HTML, JS, and CSS</span></li><li><span style="color:rgb(0, 0, 0);">Deploy to Org</span></li><li><span style="color:rgb(0, 0, 0);">Add the component to a Lightning Page</span></li></ol><p><span style="color:rgb(0, 0, 0);">That’s it! Your first LWC is live.</span></p></section><section><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">Why Learn LWC?</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
<p><span style="color:rgb(0, 0, 0);">LWC is the future of Salesforce UI development. Companies are heavily adopting Lightning Experience, and strong LWC developers are in high demand.</span></p><ul><li><span style="color:rgb(0, 0, 0);">High-paying job opportunities</span></li><li><span style="color:rgb(0, 0, 0);">Core skill for Salesforce Developers</span></li><li><span style="color:rgb(0, 0, 0);">Used in almost all modern Salesforce apps</span></li><li><span style="color:rgb(0, 0, 0);">Essential for integration and automation UI</span></li></ul><p><span style="color:rgb(0, 0, 0);">If you want to grow your Salesforce career, LWC is a must-have skill.</span></p></section><section><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">Learn LWC with Peoplewoo Skills</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
<p><span style="color:rgb(0, 0, 0);">Want to master LWC from scratch?</span></p><ul><li><span style="color:rgb(0, 0, 0);">Live classes with expert trainers</span></li><li><span style="color:rgb(0, 0, 0);">Hands-on coding sessions</span></li><li><span style="color:rgb(0, 0, 0);">Real-time projects</span></li><li><span style="color:rgb(0, 0, 0);">Interview preparation</span></li><li><span style="color:rgb(0, 0, 0);">Certification guidance</span></li></ul><p><span style="color:rgb(0, 0, 0);">Join Peoplewoo Skills to build your career as a Salesforce Developer!</span></p></section></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 LWC and Aura Components?" data-content-id="elm_X8MB5lkAUEcGoYBtGrpljg" style="margin-top:0;" tabindex="0" role="button" aria-label="1. What is the difference between LWC and Aura Components?"><span class="zpaccordion-name">1. What is the difference between LWC and Aura Components?</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>LWC is built on modern web standards (ES6+, Custom Elements, Shadow DOM) and is lighter, faster, and more standards-compliant. Aura is Salesforce's older component framework that uses a proprietary model. LWC offers better performance and aligns with standard web development practices.</span></span></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. Do I need to know modern JavaScript to learn LWC?" data-content-id="elm_HWiLrHq626LLO7HEwZZO0A" style="margin-top:0;" tabindex="0" role="button" aria-label="2. Do I need to know modern JavaScript to learn LWC?"><span class="zpaccordion-name">2. Do I need to know modern JavaScript 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_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>Yes. LWC uses ES6+ features (modules, classes, arrow functions). Familiarity with modern JavaScript will make learning LWC much easier, though beginners can start with basic JS and progress quickly.</span></p></div></span></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><div data-element-id="elm_z819rp9QtsimO7OBe5fUQQ" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="3. What are @api, @track, and @wire decorators?" data-content-id="elm_G0J2WJbaranPy8N5RGud_Q" style="margin-top:0;" tabindex="0" role="button" aria-label="3. What are @api, @track, and @wire decorators?"><span class="zpaccordion-name">3. What are @api, @track, and @wire decorators?</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></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></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></p><div><div><ul><li><strong>@api</strong>&nbsp;exposes a public property or method to parent components.</li><li><strong>@track</strong>&nbsp;(mostly not required now) marks properties for reactivity — native objects/arrays are reactive by default in modern LWC.</li><li><strong>@wire</strong>&nbsp;connects a property or function to a data source (Apex method or Lightning Data Service) for reactive data retrieval.</li></ul></div></div><p></p></div></span></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><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. How do LWC components communicate with each other?" data-content-id="elm_VCfqx-I0okQtrLLtQgg6uQ" style="margin-top:0;" tabindex="0" role="button" aria-label="4. How do LWC components communicate with each other?"><span class="zpaccordion-name">4. How do LWC components communicate with each other?</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><div><span style="color:rgb(0, 0, 0);"><div><p></p><div><p>LWC supports multiple communication patterns:</p><ul><li>Parent to child: use public properties (@api).</li><li>Child to parent: dispatch custom events.</li><li>Sibling or cross-hierarchy: use Lightning Message Service (LMS) or pub-sub for non-LWC contexts.</li></ul></div><p></p></div></span></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_tbTU4vUzVyHxec4fh5treA" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="5. When should I use Lightning Data Service (LDS) vs Apex?" data-content-id="elm_ytAT6ZF-UgNskNSKR7FuZQ" style="margin-top:0;" tabindex="0" role="button" aria-label="5. When should I use Lightning Data Service (LDS) vs Apex?"><span class="zpaccordion-name">5. When should I use Lightning Data Service (LDS) vs Apex?</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>Use&nbsp;<strong>LDS</strong>&nbsp;for standard CRUD operations and to benefit from client-side caching, record-level security, and reduced server calls. Use&nbsp;<strong>Apex</strong>&nbsp;when complex business logic, batch processing, or operations not supported by LDS are required.</p></div><p></p></section></div></div><p></p></section></main></div><p></p></section><section></section></div>
</div></div></div></div></div><div data-element-id="elm_6RUxLMGj4YxwoXqgPdIZPg" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="6. How do I debug LWC components?" data-content-id="elm_QNrEK1yT-18qH5c_b3iPmw" style="margin-top:0;" tabindex="0" role="button" aria-label="6. How do I debug LWC components?"><span class="zpaccordion-name">6. How do I debug LWC components?</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_QNrEK1yT-18qH5c_b3iPmw" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_HVgtD0p4fbhkHCrhEAQZvQ" 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_OBLA27nRuHdrfRNezvgzoQ" 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_r0ZMjSHArtZqdUbF0b2oaA" 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);">&nbsp;Use browser dev tools (console, network, debugger). Also leverage VS Code with Salesforce extensions and the Lightning Inspector (Chrome extension) to inspect component tree, events, and performance.</span></p></div>
</div></div></div></div></div><div data-element-id="elm_Ot-ZyxNpW1vTSlQ13VsUIA" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="7. Are LWCs supported in Experience Cloud (Communities)?" data-content-id="elm_9yST0LKrgBwArpsRdTW8kw" style="margin-top:0;" tabindex="0" role="button" aria-label="7. Are LWCs supported in Experience Cloud (Communities)?"><span class="zpaccordion-name">7. Are LWCs supported in Experience Cloud (Communities)?</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_9yST0LKrgBwArpsRdTW8kw" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_KOExln2V0szw9fiZX9wqtA" 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_wp7OEG_o3d1stG6-ui9_bw" 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_u8Y5mie-ZGe2fcir-8UVhw" 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);">Yes. LWC components can be used in Experience Cloud (formerly Communities). Some components may require additional configuration or audience visibility settings.</span></p></div>
</div></div></div></div></div><div data-element-id="elm_rCJUFPue1IYOJBt_a723kw" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="8. How do I test LWC components?" data-content-id="elm_8R-kAUIQs_iz8Sjd-dEBUQ" style="margin-top:0;" tabindex="0" role="button" aria-label="8. How do I test LWC components?"><span class="zpaccordion-name">8. How do I test LWC components?</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_8R-kAUIQs_iz8Sjd-dEBUQ" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_b2NQqEwi0qbRayNCOxo6qw" 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__S_Iya_qii8Zowt8u73Pgw" 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_oSRlkI1gsKwuUe1yXUwwew" 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);">Use&nbsp;<strong>Jest</strong>&nbsp;for unit testing (Salesforce provides the @salesforce/sfdx-lwc-jest setup). For UI and end-to-end tests, use tools like Selenium, WebDriverIO, or Cypress (with appropriate authentication setups).</span></p></div>
</div></div></div></div></div><div data-element-id="elm_A7ldxLKMwBKYxTXxCwIFZw" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="9. Can I reuse third-party JavaScript libraries in LWC?" data-content-id="elm_0PnDfBqHfUQsl5AjLIbXkA" style="margin-top:0;" tabindex="0" role="button" aria-label="9. Can I reuse third-party JavaScript libraries in LWC?"><span class="zpaccordion-name">9. Can I reuse third-party JavaScript 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_0PnDfBqHfUQsl5AjLIbXkA" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_YAKCagx7ddWBt6Keni5NWA" 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_ZR91KG2GsAAXTH0GLc4chw" 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_S7q3FRDd79JYM3pXoU1Jww" 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);">Yes — you can add libraries as static resources and load them (e.g., via loadScript/loadStyle). Always ensure compatibility and consider performance and security implications.</span></p></div>
</div></div></div></div></div><div data-element-id="elm_m51L4AwTAibWR7H7ENxnwA" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="10. What are common performance tips for LWC?" data-content-id="elm_flLvtn5Qh_tcAajIwZSPuw" style="margin-top:0;" tabindex="0" role="button" aria-label="10. What are common performance tips for LWC?"><span class="zpaccordion-name">10. What are common performance tips 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_flLvtn5Qh_tcAajIwZSPuw" data-element-type="accordioncontainer" class="zpelement zpaccordion-content " style="margin-top:0;"><div class="zpaccordion-element-container"><div data-element-id="elm_4KqXZVupBsKbUgnlh9uTnw" 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_rICn-BIbN5zLjTFLbdaC4g" 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_b0ySpFtQgSpii9CoNcOXdw" 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><ul><li><span style="color:rgb(0, 0, 0);">Minimize DOM updates and heavy computation in render cycle.</span></li><li><span style="color:rgb(0, 0, 0);">Use @wire and LDS where possible for efficient data access.</span></li><li><span style="color:rgb(0, 0, 0);">Lazy-load heavy libraries with loadScript.</span></li><li><span style="color:rgb(0, 0, 0);">Keep components small and focused (composition over monoliths).</span></li></ul></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);"><br/></span></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><span style="color:rgb(0, 0, 0);"><span>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></span><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><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, 21 Nov 2025 09:15:53 +0530</pubDate></item><item><title><![CDATA[Unified Individual Engagement Report & Dashboard in Salesforce Data Cloud | Peoplewoo Skills]]></title><link>https://www.peoplewoo.com/blogs/post/unified-individual-engagement-report-dashboard-in-salesforce-data-cloud-peoplewoo-skills</link><description><![CDATA[ The Unified Individual Engagement Report &amp; Dashboard in Salesforce Data Cloud provides a 360° view of how a customer interacts across channels—in ]]></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);">The Unified Individual Engagement Report &amp; Dashboard in Salesforce Data Cloud provides a 360° view of how a customer interacts across channels—including email, mobile, web, ads, and offline systems. This feature helps marketers, analysts, and consultants understand user behavior at the individual level using the Unified Profile.</span></p><p><span style="color:rgb(0, 0, 0);">In this blog, we will break down what the Unified Individual Engagement Dashboard is, how it works, real-life applications, and how you can activate it inside Salesforce Data Cloud.</span></p></section><section><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">What Is the Unified Individual Engagement Report?</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);">The Unified Individual Engagement Report is a prebuilt analytics feature within Salesforce Data Cloud that visualizes a customer’s complete interaction history. It helps businesses understand individual engagement patterns such as:</span></p><ul><li><span style="color:rgb(0, 0, 0);">Email interactions (opens, clicks, bounces)</span></li><li><span style="color:rgb(0, 0, 0);">Website behavior (page views, sessions)</span></li><li><span style="color:rgb(0, 0, 0);">Mobile app usage</span></li><li><span style="color:rgb(0, 0, 0);">Purchase and transaction history</span></li><li><span style="color:rgb(0, 0, 0);">Service interactions</span></li><li><span style="color:rgb(0, 0, 0);">Ad impressions and campaign attribution</span></li></ul><p><span style="color:rgb(0, 0, 0);">Because this report is powered by the Unified Profile, all fragmented data from different systems is stitched together into a single individual identity.</span></p></section></div><p><span style="color:rgb(0, 0, 0);"><br/></span></p></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_DizdvE29Q8t0UAOvt7JtEA" data-element-type="video" class="zpelement zpelem-video "><style type="text/css"> @media (max-width: 767px) { [data-element-id="elm_DizdvE29Q8t0UAOvt7JtEA"].zpelem-video iframe.zpvideo{ width:560px !important; height:315px !important; } } @media all and (min-width: 768px) and (max-width:991px){ [data-element-id="elm_DizdvE29Q8t0UAOvt7JtEA"].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/WUviV7e81t4?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><span style="color:rgb(0, 0, 0);"><br/></span></p></section><section></section><section><h2><span style="color:rgb(0, 0, 0);">What Is the Unified Individual Engagement Dashboard?</span></h2><p><span style="color:rgb(0, 0, 0);">The dashboard is a visual analytics layer built on top of the report. It includes charts, KPIs, timelines, and insights that allow users to analyze customer behavior instantly without writing queries.</span></p><h3><span style="color:rgb(0, 0, 0);"><br/></span></h3><h3><span style="color:rgb(0, 0, 0);">Key Components</span></h3><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
<ul><li><span style="color:rgb(0, 0, 0);"><strong>Engagement Timeline:</strong> Chronological view of all interactions.</span></li><li><span style="color:rgb(0, 0, 0);"><strong>Channel Breakdown:</strong> Email vs SMS vs Web vs App.</span></li><li><span style="color:rgb(0, 0, 0);"><strong>Conversion Metrics:</strong> Identify high-intent behavior.</span></li><li><span style="color:rgb(0, 0, 0);"><strong>Journey Performance:</strong> How customers move across lifecycle stages.</span></li><li><span style="color:rgb(0, 0, 0);"><strong>AI-Powered Insights:</strong> Likelihood to convert, churn, or re-engage.</span></li></ul></section><section><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">How the Unified Engagement Dashboard Works in Data Cloud</span></h2><p><span style="color:rgb(0, 0, 0);">The dashboard is automatically powered by the Engagement Event Data Model Object (DMO). When activity data flows into Data Cloud from different channels, Salesforce maps it to standard DMOs.</span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h3><span style="color:rgb(0, 0, 0);">Data Flow Process:</span></h3><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
<ol><li><span style="color:rgb(0, 0, 0);">Data enters via Data Streams (Salesforce, Marketing Cloud, Web SDK, Mobile SDK, APIs).</span></li><li><span style="color:rgb(0, 0, 0);">Raw data is stored in Data Lake Objects (DLOs).</span></li><li><span style="color:rgb(0, 0, 0);">Data is mapped to DMOs such as: </span><ul><li><span style="color:rgb(0, 0, 0);">Engagement Event</span></li><li><span style="color:rgb(0, 0, 0);">Individual</span></li><li><span style="color:rgb(0, 0, 0);">Unified Individual</span></li><li><span style="color:rgb(0, 0, 0);">Interaction Summary</span></li></ul></li><li><span style="color:rgb(0, 0, 0);">Identity Resolution unifies identities.</span></li><li><span style="color:rgb(0, 0, 0);">Engagement metrics populate automatically in the dashboard.</span></li></ol></section><section><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">Why This Dashboard Is Important</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
<p><span style="color:rgb(0, 0, 0);">The Unified Individual Engagement Dashboard empowers teams to understand real-time customer behavior and personalize marketing actions.</span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h3><span style="color:rgb(0, 0, 0);">Benefits:</span></h3><ul><li><span style="color:rgb(0, 0, 0);">Eliminates data silos</span></li><li><span style="color:rgb(0, 0, 0);">Accelerates data analysis</span></li><li><span style="color:rgb(0, 0, 0);">Helps build targeted segments</span></li><li><span style="color:rgb(0, 0, 0);">Improves personalization</span></li><li><span style="color:rgb(0, 0, 0);">Optimizes journeys and campaigns</span></li><li><span style="color:rgb(0, 0, 0);">Strengthens customer experience strategies</span></li></ul></section><section><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">Real-Life Example</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
<p><span style="color:rgb(0, 0, 0);">A retail brand wants to analyze the engagement of a specific user. With the Unified Engagement Dashboard, the marketer can instantly view:</span></p><ul><li><span style="color:rgb(0, 0, 0);">The customer's last purchase value</span></li><li><span style="color:rgb(0, 0, 0);">Email engagement history (opens, clicks)</span></li><li><span style="color:rgb(0, 0, 0);">Website interactions (cart additions, product views)</span></li><li><span style="color:rgb(0, 0, 0);">Mobile app sessions</span></li><li><span style="color:rgb(0, 0, 0);">Ad campaign touchpoints</span></li></ul><p><span style="color:rgb(0, 0, 0);">Based on this data, they can create a segment like &quot;High-Intent Buyers Who Viewed Product X&quot; and trigger a personalized offer in Journey Builder.</span></p></section><section><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">How to Activate Unified Individual Engagement Dashboard</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
<ol><li><span style="color:rgb(0, 0, 0);">Go to **Data Cloud Setup**</span></li><li><span style="color:rgb(0, 0, 0);">Enable **Individual &amp; Engagement Reporting**</span></li><li><span style="color:rgb(0, 0, 0);">Ensure **Engagement Event DMO** is mapped correctly</span></li><li><span style="color:rgb(0, 0, 0);">Enable **Identity Resolution**</span></li><li><span style="color:rgb(0, 0, 0);">Verify stitched profiles under **Unified Individuals**</span></li><li><span style="color:rgb(0, 0, 0);">Open Analytics → Unified Engagement Dashboard</span></li></ol><p><span style="color:rgb(0, 0, 0);">Once activated, the dashboard automatically populates as data flows in.</span></p></section><section><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">Learn Data Cloud Hands-On</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
<p><span style="color:rgb(0, 0, 0);">Struggling to understand Unified Profiles, DLO-DMO mapping, or Engagement Dashboards?</span></p><p><strong style="color:rgb(0, 0, 0);">Join our expert-led Data Cloud training and master real-world Salesforce projects with Peoplewoo Skills.</strong></p><p><strong><a href="https://www.peoplewoo.com/" title="Register Now" rel="" style="color:rgb(0, 0, 0);">Register Now</a></strong></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);">Always validate engagement data before mapping</span></li><li><span style="color:rgb(0, 0, 0);">Use standard DMOs whenever possible</span></li><li><span style="color:rgb(0, 0, 0);">Keep naming conventions consistent</span></li><li><span style="color:rgb(0, 0, 0);">Ensure Identity Resolution is clean and accurate</span></li><li><span style="color:rgb(0, 0, 0);">Document data flows and mappings for governance</span></li></ul></section><section><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">Why Learn Data Cloud with Peoplewoo Skills?</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
<ul><li><span style="color:rgb(0, 0, 0);">Live, instructor-led Data Cloud training</span></li><li><span style="color:rgb(0, 0, 0);">Hands-on experience with real Salesforce orgs</span></li><li><span style="color:rgb(0, 0, 0);">Access to datasets and real projects</span></li><li><span style="color:rgb(0, 0, 0);">Career guidance + certification support</span></li><li><span style="color:rgb(0, 0, 0);">Free demo classes</span></li></ul><p><span style="color:rgb(0, 0, 0);">Join the growing Peoplewoo Skills community and transform your career in Salesforce Data Cloud!</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 powers the Unified Individual Engagement Dashboard?" data-content-id="elm_X8MB5lkAUEcGoYBtGrpljg" style="margin-top:0;" tabindex="0" role="button" aria-label="1. What powers the Unified Individual Engagement Dashboard?"><span class="zpaccordion-name">1. What powers the Unified Individual Engagement Dashboard?</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);">It is powered by Engagement Event DMO, Unified Individual DMO, and mapped data from channels such as email, web, and app.</span></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. Do I need Identity Resolution enabled?" data-content-id="elm_HWiLrHq626LLO7HEwZZO0A" style="margin-top:0;" tabindex="0" role="button" aria-label="2. Do I need Identity Resolution enabled?"><span class="zpaccordion-name">2. Do I need Identity Resolution enabled?</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>Yes. Without Identity Resolution, profiles will not unify, and engagement cannot be attributed correctly.</p></div></span></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><div data-element-id="elm_z819rp9QtsimO7OBe5fUQQ" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="3. Can custom DMOs be used?" data-content-id="elm_G0J2WJbaranPy8N5RGud_Q" style="margin-top:0;" tabindex="0" role="button" aria-label="3. Can custom DMOs be used?"><span class="zpaccordion-name">3. Can custom DMOs be used?</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></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></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>Yes, but Salesforce recommends using standard DMOs for analytics compatibility.</p></div></span></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><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 dashboard not showing data?" data-content-id="elm_VCfqx-I0okQtrLLtQgg6uQ" style="margin-top:0;" tabindex="0" role="button" aria-label="4. Why is my dashboard not showing data?"><span class="zpaccordion-name">4. Why is my dashboard not showing data?</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><div><span style="color:rgb(0, 0, 0);"><div><p>This usually happens when data mapping is incorrect or engagement events are not flowing into Data Cloud.</p></div></span></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_tbTU4vUzVyHxec4fh5treA" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="5. Is coding required to use the engagement dashboard?" data-content-id="elm_ytAT6ZF-UgNskNSKR7FuZQ" style="margin-top:0;" tabindex="0" role="button" aria-label="5. Is coding required to use the engagement dashboard?"><span class="zpaccordion-name">5. Is coding required to use the engagement dashboard?</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);">No, it is a fully visual dashboard. However, advanced teams may use SQL for deeper analysis if needed.</span></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);"><br/></span></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><span style="color:rgb(0, 0, 0);">The Unified Individual Engagement Report &amp; Dashboard in Salesforce Data Cloud is a powerful tool for understanding customer behavior and creating hyper-personalized journeys. By unifying data across channels, businesses can make informed decisions, optimize campaigns, and deliver exceptional customer experiences. Whether you're a marketer, consultant, or analyst—mastering this dashboard is essential for success in Data Cloud.</span><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><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;or learn at your own pace with our&nbsp;<strong><a href="https://www.udemy.com/course/salesforce-data-cloud-consultant-training-basics" rel="">Udemy Course</a></strong>.</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, 17 Nov 2025 19:29:17 +0530</pubDate></item><item><title><![CDATA[Re-Engagement Campaign Activation In Salesforce Data Cloud Using Unified Profile | Peoplewoo Skills]]></title><link>https://www.peoplewoo.com/blogs/post/re-engagement-campaign-activation-in-salesforce-data-cloud-using-unified-profile-peoplewoo-skills</link><description><![CDATA[ A re-engagement campaign is one of the most commonly implemented marketing use cases. In Salesforce Data Cloud, this becomes even more powerful when ]]></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>A re-engagement campaign is one of the most commonly implemented marketing use cases. In Salesforce Data Cloud, this becomes even more powerful when combined with&nbsp;<strong>Unified Profiles</strong>. By unifying data across multiple sources—CRM, website, mobile, email, and offline systems—you can identify inactive customers and activate them through personalized messages.</p><p>This project guide explains how to build a complete re-engagement activation journey using Salesforce Data Cloud, including data ingestion, identity resolution, segmentation, and activation in Marketing Cloud.</p><h2><br/></h2><h2>What Is a Re-Engagement Campaign?</h2><div><br/></div><p>A re-engagement campaign targets customers who have not interacted with your brand for a certain period. The goal is to remind them of your offerings, bring them back, and increase conversion rates.</p><p>Data Cloud makes this possible by creating a unified and actionable customer profile with real-time data updates.</p><p><br/></p><p><br/></p></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_j6lRVV9THfndxHC_yohA0A" data-element-type="video" class="zpelement zpelem-video "><style type="text/css"> @media (max-width: 767px) { [data-element-id="elm_j6lRVV9THfndxHC_yohA0A"].zpelem-video iframe.zpvideo{ width:560px !important; height:315px !important; } } @media all and (min-width: 768px) and (max-width:991px){ [data-element-id="elm_j6lRVV9THfndxHC_yohA0A"].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/qdWQiLHKu5w?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><header><section><section><section><section><header><header><header><header><header><p></p><div><header><header><p><span style="font-family:Poppins, sans-serif;font-size:40px;font-weight:600;color:rgb(0, 0, 0);">Business Problem</span></p><p><span style="color:rgb(0, 0, 0);">Many customers stop responding to emails, do not visit the website, or do not purchase for months. Without a unified view, it is difficult to identify these inactive users accurately and run targeted campaigns.</span></p><p><span style="color:rgb(0, 0, 0);">Salesforce Data Cloud solves this by combining data from multiple systems and applying identity resolution to build a single unified customer view.</span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><h2><span style="color:rgb(0, 0, 0);">Project Workflow Overview</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);">This project includes the following key steps:</span></p><ol><li><span style="color:rgb(0, 0, 0);">Ingest customer data into Data Cloud</span></li><li><span style="color:rgb(0, 0, 0);">Create Unified Profile using Identity Resolution</span></li><li><span style="color:rgb(0, 0, 0);">Build Segment for inactive customers</span></li><li><span style="color:rgb(0, 0, 0);">Activate segment to Marketing Cloud (Email Studio/Journey Builder)</span></li><li><span style="color:rgb(0, 0, 0);">Run Re-engagement Journey</span></li><li><span style="color:rgb(0, 0, 0);">Measure performance</span></li></ol><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">Step 1: Ingest Customer Data into Data Cloud</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);">To identify inactive customers, load relevant data into Data Cloud:</span></p><ul><li><span style="color:rgb(0, 0, 0);">Customer demographic data</span></li><li><span style="color:rgb(0, 0, 0);">Email engagement data</span></li><li><span style="color:rgb(0, 0, 0);">Website activity</span></li><li><span style="color:rgb(0, 0, 0);">Mobile app interactions</span></li><li><span style="color:rgb(0, 0, 0);">Purchase transactions</span></li></ul><p><span style="color:rgb(0, 0, 0);">Use Data Streams to bring data in from:</span></p><ul><li><span style="color:rgb(0, 0, 0);">Salesforce CRM</span></li><li><span style="color:rgb(0, 0, 0);">Marketing Cloud</span></li><li><span style="color:rgb(0, 0, 0);">Commerce Cloud</span></li><li><span style="color:rgb(0, 0, 0);">External databases</span></li></ul><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">Step 2: Build Unified Profiles (Identity Resolution)</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);">Identity Resolution merges individual records into a single unified customer profile.</span></p><table border="1" cellpadding="8" cellspacing="0"><tbody><tr><th><span style="color:rgb(0, 0, 0);">Data Source</span></th><th><span style="color:rgb(0, 0, 0);">Identifiers Used</span></th><th><span style="color:rgb(0, 0, 0);">Unified Attribute</span></th></tr><tr><td><span style="color:rgb(0, 0, 0);">CRM</span></td><td><span style="color:rgb(0, 0, 0);">Email, Phone</span></td><td><span style="color:rgb(0, 0, 0);">Customer ID</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">Website</span></td><td><span style="color:rgb(0, 0, 0);">Cookie ID</span></td><td><span style="color:rgb(0, 0, 0);">Unified Web ID</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">Mobile App</span></td><td><span style="color:rgb(0, 0, 0);">Device ID</span></td><td><span style="color:rgb(0, 0, 0);">Mobile Profile ID</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">Marketing Cloud</span></td><td><span style="color:rgb(0, 0, 0);">SubscriberKey</span></td><td><span style="color:rgb(0, 0, 0);">Unified Marketing ID</span></td></tr></tbody></table><p><span style="color:rgb(0, 0, 0);">Once identity resolution runs, all activities are linked to one person.</span></p><hr/><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">Step 3: Create Inactive Customer Segment</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);">Define the inactivity criteria based on business rules:</span></p><ul><li><span style="color:rgb(0, 0, 0);">No email engagement in last 60 days</span></li><li><span style="color:rgb(0, 0, 0);">No website visit in last 45 days</span></li><li><span style="color:rgb(0, 0, 0);">No mobile interaction in last 30 days</span></li><li><span style="color:rgb(0, 0, 0);">No purchase in last 90 days</span></li></ul><p><span style="color:rgb(0, 0, 0);">Create a segment using these filters in Data Cloud.</span></p><table border="1" cellpadding="8" cellspacing="0"><tbody><tr><th><span style="color:rgb(0, 0, 0);">Condition</span></th><th><span style="color:rgb(0, 0, 0);">Logic</span></th></tr><tr><td><span style="color:rgb(0, 0, 0);">Email Open = 0</span></td><td><span style="color:rgb(0, 0, 0);">Last 60 Days</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">Website Visit = 0</span></td><td><span style="color:rgb(0, 0, 0);">Last 45 Days</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">Purchase Count = 0</span></td><td><span style="color:rgb(0, 0, 0);">Last 90 Days</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">Unified Profile Exists</span></td><td><span style="color:rgb(0, 0, 0);">True</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);">Step 4: Activate the Segment to Marketing Cloud</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);">To run a campaign, push the segment from Data Cloud to Salesforce Marketing Cloud.</span></p><p><span style="color:rgb(0, 0, 0);">During activation, choose a destination:</span></p><ul><li><span style="color:rgb(0, 0, 0);">Journey Builder</span></li><li><span style="color:rgb(0, 0, 0);">Email Studio</span></li><li><span style="color:rgb(0, 0, 0);">Mobile Studio (SMS/Push)</span></li></ul><p><span style="color:rgb(0, 0, 0);">When activated, Data Cloud will automatically create a Data Extension inside Marketing Cloud with targeted inactive users.</span></p><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">Step 5: Build Re-Engagement Journey in Marketing Cloud</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><p><span style="color:rgb(0, 0, 0);">Design a personalized journey targeting these inactive users.</span></p><p><span style="color:rgb(0, 0, 0);">Your journey may include:</span></p><ul><li><span style="color:rgb(0, 0, 0);">Welcome back email</span></li><li><span style="color:rgb(0, 0, 0);">Discount or promotional SMS</span></li><li><span style="color:rgb(0, 0, 0);">Reminder email after 3 days</span></li><li><span style="color:rgb(0, 0, 0);">Final “We Miss You” message</span></li></ul><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);">Journey Step</span></th><th><span style="color:rgb(0, 0, 0);">Description</span></th></tr><tr><td><span style="color:rgb(0, 0, 0);">Email 1</span></td><td><span style="color:rgb(0, 0, 0);">Welcome Back — Share what's new</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">Wait Activity</span></td><td><span style="color:rgb(0, 0, 0);">3 Days</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">SMS/Push Notification</span></td><td><span style="color:rgb(0, 0, 0);">Special offer</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">Email 2</span></td><td><span style="color:rgb(0, 0, 0);">Discount or Personalized Product Recommendation</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">Exit Evaluations</span></td><td><span style="color:rgb(0, 0, 0);">Check if customer engages</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);">Step 6: Measure Success with KPIs</span></h2><p><span style="color:rgb(0, 0, 0);">Monitor engagement using dashboards and reports:</span></p><table border="1" cellpadding="8" cellspacing="0"><tbody><tr><th><span style="color:rgb(0, 0, 0);">KPI</span></th><th><span style="color:rgb(0, 0, 0);">Purpose</span></th></tr><tr><td><span style="color:rgb(0, 0, 0);">Open Rate</span></td><td><span style="color:rgb(0, 0, 0);">Check if customers are engaging with emails</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">Click Rate</span></td><td><span style="color:rgb(0, 0, 0);">Measures content relevance</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">Reactivation Rate</span></td><td><span style="color:rgb(0, 0, 0);">Customers who return after campaign</span></td></tr><tr><td><span style="color:rgb(0, 0, 0);">Conversion Rate</span></td><td><span style="color:rgb(0, 0, 0);">Revenue impact</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);">Real-Life Example</span></h2><p><span style="color:rgb(0, 0, 0);">Assume a retail customer has 25,000 inactive users who haven't purchased anything for the last 90 days. Using Data Cloud unified profiles, they created a precise segment and activated it to Marketing Cloud. After running a journey with personalized offers, they recovered 3,200 customers — leading to significant revenue uplift.</span></p><p><span style="color:rgb(0, 0, 0);">This demonstrates how powerful Data Cloud + Unified Profile + Journey Builder can be for re-engagement campaigns.</span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><p><span style="color:rgb(0, 0, 0);"><br/></span></p><p></p><div><div><h2><span style="color:rgb(0, 0, 0);">Learn Data Cloud Hands-On</span></h2><div><br/></div><p><span style="color:rgb(0, 0, 0);">Struggling to map DLOs to DMOs or implement identity stitching? Join our expert-led Data Cloud training and master every layer of Salesforce's customer data platform with real-world demos.</span></p><p><strong style="color:rgb(0, 0, 0);"><a href="https://www.peoplewoo.com/" title="Register&nbsp;Now" target="_blank" rel="">Register</a><a href="https://www.peoplewoo.com/" title="Register&nbsp;Now" target="_blank" rel="">&nbsp;Now</a></strong></p></div><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><h2><span style="color:rgb(0, 0, 0);">Best Practices</span></h2><ul><li><span style="color:rgb(0, 0, 0);">Always validate your DLO before mapping to DMO</span></li><li><span style="color:rgb(0, 0, 0);">Use standard DMOs unless absolutely necessary to create a custom one</span></li><li><span style="color:rgb(0, 0, 0);">Keep naming conventions consistent for easier debugging</span></li><li><span style="color:rgb(0, 0, 0);">Document every mapping for auditing and governance</span></li></ul><div><span style="color:rgb(0, 0, 0);"><br/></span></div><div><h2><span style="color:rgb(0, 0, 0);">Why Learn Data Cloud with Peoplewoo Skills?</span></h2><div><span style="color:rgb(0, 0, 0);"><br/></span></div><span style="color:rgb(0, 0, 0);"><br/></span><ul><li><span style="color:rgb(0, 0, 0);">Live, instructor-led training with real-time practice</span></li><li><span style="color:rgb(0, 0, 0);">Hands-on experience with Salesforce Data Cloud projects</span></li><li><span style="color:rgb(0, 0, 0);">Access to sandbox orgs and datasets</span></li><li><span style="color:rgb(0, 0, 0);">Free demo and career support</span></li><li><span style="color:rgb(0, 0, 0);">Preparation for Salesforce certification</span></li></ul><h2><span style="color:rgb(0, 0, 0);"><br/></span></h2><div><span style="color:rgb(0, 0, 0);">Be part of the growing&nbsp;<strong>Peoplewoo Skills community</strong>&nbsp;— where professionals upskill, grow, and launch their careers in&nbsp;<strong>Salesforce Data Cloud!</strong></span></div></div></div><p></p><div></div></header><section></section><section></section></header></div>
<section></section></header></header></header></header></header></section><section></section></section></section></section></header></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 a Re-Engagement Campaign in Salesforce Data Cloud?" data-content-id="elm_X8MB5lkAUEcGoYBtGrpljg" style="margin-top:0;" tabindex="0" role="button" aria-label="1. What is a Re-Engagement Campaign in Salesforce Data Cloud?"><span class="zpaccordion-name">1. What is a Re-Engagement Campaign in Salesforce Data Cloud?</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>A Re-Engagement Campaign targets inactive or low-engagement customers using unified and enriched data stored in Data Cloud. By using the Unified Profile, marketers can identify customers who haven’t interacted recently and send personalized messages through Marketing Cloud, Mobile Studio, or other activation channels.</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. How does the Unified Profile help in Re-Engagement Campaigns?" data-content-id="elm_HWiLrHq626LLO7HEwZZO0A" style="margin-top:0;" tabindex="0" role="button" aria-label="2. How does the Unified Profile help in Re-Engagement Campaigns?"><span class="zpaccordion-name">2. How does the Unified Profile help in Re-Engagement Campaigns?</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);">Unified Profile combines all customer identities, behaviors, transactions, and preferences into one single profile. This helps marketers accurately identify lapsed customers, segment them based on behavior, and send more relevant re-engagement messages—improving conversion rates.</span></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><div data-element-id="elm_z819rp9QtsimO7OBe5fUQQ" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="3. Can I use multiple data sources to build my Re-Engagement audience?" data-content-id="elm_G0J2WJbaranPy8N5RGud_Q" style="margin-top:0;" tabindex="0" role="button" aria-label="3. Can I use multiple data sources to build my Re-Engagement audience?"><span class="zpaccordion-name">3. Can I use multiple data sources to build my Re-Engagement audience?</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></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></p><div><p><span style="color:rgb(0, 0, 0);"></span></p><div><p></p><div><div><span style="color:rgb(0, 0, 0);">Yes. Data Cloud allows you to ingest data from CRM, websites, mobile apps, offline stores, and third-party platforms. All identities and interactions are stitched together using Identity Resolution, enabling you to create highly accurate re-engagement segments.</span></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><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. How do I activate my Re-Engagement audience in Salesforce Marketing Cloud?" data-content-id="elm_VCfqx-I0okQtrLLtQgg6uQ" style="margin-top:0;" tabindex="0" role="button" aria-label="4. How do I activate my Re-Engagement audience in Salesforce Marketing Cloud?"><span class="zpaccordion-name">4. How do I activate my Re-Engagement audience in Salesforce Marketing Cloud?</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><div><span style="color:rgb(0, 0, 0);">Once your segment is published from Data Cloud, you can choose activation destinations such as Marketing Cloud Engagement. The segment becomes available as an audience in Journey Builder or Email Studio, where you can send personalized email, SMS, or push notifications to re-engage customers.</span></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_tbTU4vUzVyHxec4fh5treA" data-element-type="accordionheader" class="zpelement zpaccordion " data-tab-name="5. What are the best practices for building a Re-Engagement Campaign in Data Cloud?" data-content-id="elm_ytAT6ZF-UgNskNSKR7FuZQ" style="margin-top:0;" tabindex="0" role="button" aria-label="5. What are the best practices for building a Re-Engagement Campaign in Data Cloud?"><span class="zpaccordion-name">5. What are the best practices for building a Re-Engagement Campaign in Data Cloud?</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><section><p><span style="color:rgb(0, 0, 0);"></span></p><div><main><section><p></p><div><div><span style="color:rgb(0, 0, 0);">&nbsp;Use recent activity timestamps (e.g., Last Purchase Date, Last Email Open) as filtering criteria.&nbsp;</span></div><span style="color:rgb(0, 0, 0);"><br/></span><div><span style="color:rgb(0, 0, 0);">- Personalize messages based on customer behavior stored in DMOs such as Engagement Event or Unified Individual.&nbsp;</span></div><span style="color:rgb(0, 0, 0);"><br/></span><div><span style="color:rgb(0, 0, 0);">- A/B test your subject lines, offers, and CTAs to improve performance.&nbsp;</span></div><span style="color:rgb(0, 0, 0);"><br/></span><div><span style="color:rgb(0, 0, 0);">- Keep your frequency low to avoid churn or unsubscribes.&nbsp;</span></div><span style="color:rgb(0, 0, 0);"><br/></span><div><span style="color:rgb(0, 0, 0);">- Continuously monitor engagement metrics and update your Data Cloud segment logic as needed.</span></div></div><p></p></section></main></div><p></p></section><section></section></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);"><br/></span></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><span style="color:rgb(0, 0, 0);"></span></p><div><p>Re-engagement campaigns become much more accurate and impactful when powered by Salesforce Data Cloud. Unified Profiles ensure that you target the right customers with personalized content, while activation into Marketing Cloud lets you execute multi-channel campaigns efficiently.</p><p>This project is essential for anyone preparing for Salesforce Data Cloud interviews or real-world implementations. For more tutorials and live training, visit&nbsp;<strong>Peoplewoo Skills</strong>.</p></div><p><span style="color:rgb(0, 0, 0);"></span></p></div></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><p></p></div><div><span style="color:rgb(0, 0, 0);"><br/></span></div>
</div></div></div><p></p><div><div><h2><span style="color:rgb(0, 0, 0);"></span></h2></div><div><div><h2>More SFDC Resources</h2></div><br/><div><span style="font-style:italic;"><p>Start your SFMC journey today — join our&nbsp;<strong><a href="https://www.peoplewoo.com/" target="_blank" rel="">Live Training</a></strong>&nbsp;or learn at your own pace with our&nbsp;<strong><a href="https://www.udemy.com/course/salesforce-data-cloud-consultant-training-basics" rel="">Udemy Course</a></strong>.</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, 17 Nov 2025 14:54:38 +0530</pubDate></item></channel></rss>