Frequently Asked LWC Interview Questions & Answers

แชร์
ฝัง
  • เผยแพร่เมื่อ 26 ก.ย. 2024

ความคิดเห็น • 38

  • @Himanshukumar-pw4ys
    @Himanshukumar-pw4ys 4 หลายเดือนก่อน +7

    key difference b/w track and api is :
    1. track is used to observe the changes in properties object or array whereas api is used to make the property or method in a js file to be public so that the parent component can pass the data to the child component.
    Can we perform DML inside the wire or not?
    No, we cannot perform DML inside the wire as it is used only to retrieve the data from the salesforce database.

  • @kumarvenkat739
    @kumarvenkat739 3 หลายเดือนก่อน +1

    Thank you so much Sir, I cannot finish a video without saying a Big THANK YOU to you

  • @saisagar921
    @saisagar921 3 หลายเดือนก่อน +2

    Track is used with properties to track changes in Arrays or Objects
    Wire is Used with properties or functions to read data from apex
    No,we cant perform DML Inside wire Method
    Thank you so much sir for your videos and clear explanation

  • @PoojaSinghal-cl6wj
    @PoojaSinghal-cl6wj 4 หลายเดือนก่อน +2

    1. Track decorator - used with properties to track changes in arrays or objects
    Wire decorator - used with properties or functions to read data from apex
    2. we can’t perform DML inside wire

  • @ashwinkubde5232
    @ashwinkubde5232 4 หลายเดือนก่อน +2

    ==> No, we cannot perform DML operations in wire since wire services are read-only services but we have workaround to perform DML we have to remove catchable=true and use it imperative
    ==> @track is internal to the component. @api expose a component's property or method to the parent component, so that parent can access it.

  • @kundlikyewale1464
    @kundlikyewale1464 3 หลายเดือนก่อน

    1. Track decorator - Used with properties to track changes in arrays or objects if any change occurs in track properties it will render the component
    Wire decorator - Used with properties or functions to read data from the apex where @AuraEnabled required
    2. We can’t perform DML inside wire because which internally perform read operation to access the data

  • @sunilbihani7581
    @sunilbihani7581 4 หลายเดือนก่อน +2

    Thank you so much @Ankit Sir. Its great.

  • @kasivisweswar577
    @kasivisweswar577 10 วันที่ผ่านมา

    API- Annotate it with @api
    This is used to make the property public. To pass data from parent component to child component we need to use @api in child component to make it public. So that data can pass from parent to child.
    Track- annotate it with @track
    Use to make the property private and it also tracks the changes in object and array.
    Wire- @wire
    Reactive wire service is used to read the salesforce data from Apex class.
    We cannot perform DML operation in wire.

    • @TechJourneyWithAnkit
      @TechJourneyWithAnkit  8 วันที่ผ่านมา

      Inherited sharing class of directly calls runs in Sharing mode, however other by default runs in system mode

  • @haribabuk5162
    @haribabuk5162 4 หลายเดือนก่อน +5

    @track decorator is used in some properties only in lwc like array and object,if we want to change any properties in the array or object to make that properties reactive we can use @track decorator for an array or object.
    @Api decorator -@Api decorator is used to make property public , generally we used api properties in child component to receive the data from the parent component.
    we cannot perform DML operation inside wire,
    if we want to perform DML in imperative method for that we need to remove @AuraEnableCacheable = true for an apex method

  • @haribabuk5162
    @haribabuk5162 4 หลายเดือนก่อน

    Thanks for giving these type of knowledge

  • @anilkumarsahu8546
    @anilkumarsahu8546 2 หลายเดือนก่อน

    excellent!!!

  • @TheBeastBananas
    @TheBeastBananas 4 หลายเดือนก่อน

    Thanks. Waiting for more

  • @naveenadapa1325
    @naveenadapa1325 4 หลายเดือนก่อน

    Please Upload LWC Interview Questions

  • @luciferbhoi
    @luciferbhoi 4 หลายเดือนก่อน

    thank you so much, I was looking for this. Subscribed to the channel and looking forward to upcoming content. Also, when can we expect the next part

  • @naj7213
    @naj7213 3 วันที่ผ่านมา

    can we call wire method using LWC life cycle hooks? if yes, in which LWC life cycle hook?

    • @TechJourneyWithAnkit
      @TechJourneyWithAnkit  21 ชั่วโมงที่ผ่านมา

      Wire method is a seperate process. If you have to invoke it in life cycle change the parameter of wire in connected callback

  • @raghavendrasharma2466
    @raghavendrasharma2466 4 หลายเดือนก่อน +1

    One of my interview, interviewer ask me if we make call-out from lwc, and response come bit late then how can we resolve this issue that response come fast.

    • @luciferbhoi
      @luciferbhoi 4 หลายเดือนก่อน

      What would be the answer

    • @TechJourneyWithAnkit
      @TechJourneyWithAnkit  4 หลายเดือนก่อน

      I am not sure. There is something wrong in the question

    • @NaveenKumar-sd6mx
      @NaveenKumar-sd6mx 4 หลายเดือนก่อน +2

      To make the response from the Lwc system faster, you can:
      1. Make sure the most critical calls are handled first.
      2. Simplify the steps needed to handle calls to reduce delays.
      3. Ensure requests are sent through the quickest and most efficient paths.

  • @ashishgupta5209
    @ashishgupta5209 หลายเดือนก่อน

    If the interviewer asked us to write trigger or Apex code where we should write like in developer console or in notepad

    • @TechJourneyWithAnkit
      @TechJourneyWithAnkit  หลายเดือนก่อน

      If you are good with syntax, go for Developer console or vs code else notepad will be fine for interviewer. Interviewer will be more interested in approach

  • @nv1242
    @nv1242 2 หลายเดือนก่อน

    Like and subscribe done.

  • @shrutiggundewar
    @shrutiggundewar 4 หลายเดือนก่อน +1

    Questions which were asked during interview-
    1. There is multicurrency field created, how can we display the value of this field in lwc with currency
    2. Create a login page on experience site with two fields - username and password. Upon click of submit button authenticate the credentials and accordingly show next page or error message.