Frequently Asked LWC Interview Questions & Answers

Поділитися
Вставка
  • Опубліковано 18 тра 2024
  • Part 1 - • Frequently Asked LWC I...
    Looking to nail your next LWC (Lightning Web Components) interview? 🚀 This video features a comprehensive list of frequently asked LWC interview questions, along with detailed explanations and examples to help you ace your interview! Whether you're a beginner or an experienced developer, this resource will help you brush up on key concepts and boost your confidence. Don't miss out on this essential guide to mastering LWC interviews - hit play now and take your skills to the next level!
    #salesforce #salesforceflow #salesforceintegration #techjourneywithankit #salesforceadmin #salesforceadministrator #salesforcedevelopers #interview #lwc #lwcinterview #lwcsalesforce

КОМЕНТАРІ • 30

  • @ad123441
    @ad123441 Місяць тому +2

    26.51 lightning:combobox

  • @haribabuk5162
    @haribabuk5162 Місяць тому +1

    lightning combox is used to display the picklist values of an object

  • @saptarshidas7877
    @saptarshidas7877 5 днів тому

    Hey Ankit First of all thanks for the awesome contents.
    I had a doubt for Wire and connectedCallback order of execution scenario how many times the console log will be printed ? Even though wire is called twice I can see its getting printed only after connectedCallback.
    Clarify if possible.

  • @stoical_shorts1426
    @stoical_shorts1426 Місяць тому +2

    Q.LWC is placed on record page and you want to get the record ud of the page. How can we do it?
    Ans :- import {LightningElement, api} from 'lwc';
    export default class example extends LightningElement{
    @api recordId;
    connectedCallback(){
    console.log ('This is the recordId of the page', this.recordId);
    }
    }
    Record Id : {$recordId}

  • @NingannaKamalapure
    @NingannaKamalapure Місяць тому

    Lightning-combobox is used to display the picklist value to ui

  • @atulchopade9897
    @atulchopade9897 Місяць тому

    33:01 We can use render method to switch between multiple html file, however it's not a life cycle method it's protected method provided by the framework.
    33:01 we can create a public property with @api recordId to get Id from if the LWC component placed on record page.

    • @TechJourneyWithAnkit
      @TechJourneyWithAnkit  Місяць тому

      Yes catch is render is not a life cycle method , but we can use the protected method to do that

  • @pranaysawarkar7071
    @pranaysawarkar7071 28 днів тому

    hello ankit how are you i saw this video for my interview preparation in life cycle hooks you include only 5 life cycle hooks like constructor, connected callback, render callback, disconnected callback, and last one is error callback might be render is also consider as life cycle hook they are 6 might be not 5 can you please explain why you consider 5 only in ans.....!

    • @TechJourneyWithAnkit
      @TechJourneyWithAnkit  28 днів тому

      No, the render method in Lightning Web Components (LWC) is not technically a lifecycle hook. It's a protected method in the LightningElement class that's similar to lifecycle hooks and is used to conditionally render a template.

    • @pranaysawarkar7071
      @pranaysawarkar7071 28 днів тому

      But most of the people consider render as life cycle hook

  • @luciferbhoi
    @luciferbhoi Місяць тому

    Hi Ankit, what are your thoughts of Data cloud, it is going to be the next big thing in Salesforce ecosystem?

    • @TechJourneyWithAnkit
      @TechJourneyWithAnkit  Місяць тому

      Definitely it will be. Data Cloud + AI is future

    • @luciferbhoi
      @luciferbhoi Місяць тому +1

      @@TechJourneyWithAnkit Salesforce is pushing towards CRM+AI+Data with trust. I have started learning data cloud

    • @lalithaprathyusha8070
      @lalithaprathyusha8070 Місяць тому +1

      @@TechJourneyWithAnkit Any series you will be planning on it

  • @momanddaughterchannel3938
    @momanddaughterchannel3938 Місяць тому

    Render method

  • @thalurumahendrababu
    @thalurumahendrababu Місяць тому

    First question answer is using RenderedCallBack we can achieve it and Second question answer is Using Wire Decorator we can achieve it.

  • @deepalitiwari6561
    @deepalitiwari6561 Місяць тому

    Question asked from me -
    1. How to pass data from one component to another when they are not connected
    2. How to we make callouts in lwc
    3 . How we go next page in lwc
    4. Can we have multiple js and html files in lwc ?
    5. What should be the purpose and what are the benefits of having multiple js and html files
    6. Catchable= true , how it functions at the backend how it helps in fetching the data

    • @TechJourneyWithAnkit
      @TechJourneyWithAnkit  Місяць тому

      Few of them already covered in part 2. Remaining will cover in part 3

  • @haribabuk5162
    @haribabuk5162 Місяць тому

    "When will the next class be?"

  • @momanddaughterchannel3938
    @momanddaughterchannel3938 Місяць тому

    2. @api to get recordid

  • @harmeetsandhu8238
    @harmeetsandhu8238 28 днів тому

    1.Render Method
    2.@api recordId