ReactJS & JavaScript Mock Interview | 🎉 Candidate selected 🎉 | Mid range Engineer

Поділитися
Вставка
  • Опубліковано 22 сер 2024
  • Join Uncommon Geeks community to discuss with other developers: t.me/uncommongeek. #frontenddeveloper #mockinterview #uncommonGeeks
    Link for registering mock interview, register only if your ready to publish your video on UA-cam: forms.gle/38sN...
    Interview Preparation series : • Watch this series and ...
    Medium Blog / mevasanth
    Follow me on LinkedIn - / vasanth-bhat-4180909b
    Github Repository that contains examples: github.com/coo...
    JavaScript Custom implementation introduction: • Learn Custom implement...

КОМЕНТАРІ • 60

  • @aditimahabole1761
    @aditimahabole1761 2 місяці тому +3

    I can give ans to first code snippet const a = b = c = 1
    can be seen as
    const a = 1;
    b = a;
    c = b;
    so here b and c are declared without any var let or const so these become global variables
    and as we know const is a block scope so after function executes and completes a lost its scope and is undefined while b and c are global variable right and we have assigned a number to them so they are showing us type as number.
    I hope this is clear.

    • @careerwithvasanth
      @careerwithvasanth  2 місяці тому

      Correct !!

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

      It is not that variable `a` lost its scope but typeof any variable inside console.log() without declaring always returns undefined. You can try it.
      simply write just one line of code in the vs code like below
      console.log(typeof a); // undefined

    • @ArpithaIndira
      @ArpithaIndira 21 день тому

      Thank you Aditi ❤

  • @BhagavathiK
    @BhagavathiK Рік тому +6

    Asking the exact questions that I got interviewed on my past interviews . Everyone has to know these concepts to get a job . Thank you

    • @careerwithvasanth
      @careerwithvasanth  Рік тому

      Thanks for commenting. In case if you not subscribed to my channel please subscribe and press the bell icon and watch all my videos and share the channel with your friends.

  • @ranga3194
    @ranga3194 Рік тому +5

    You have very positive vibes and your energy and that enthusiastic smile is awesome 🧡🧡🧡🧡🧡

    • @careerwithvasanth
      @careerwithvasanth  Рік тому +1

      Thanks for commenting RANGA. In case if you not subscribed to my channel please subscribe and press the bell icon and watch all my videos.

  • @bikidas5473
    @bikidas5473 Рік тому +4

    21:21, the explanation can be more depth if the function expression is defined with var we get a typerror and with both const and let it's a reference error, typerror comes with var as var is global we are able to refer it but since we have a function expression and our var doesn't yet know it, it throws a typerror while with let and const they are not hoisted per say so reference error shows up!

  • @shaquibkhan9829
    @shaquibkhan9829 5 місяців тому +1

    5:05 , line-by-line execution happens in 2 step execution process with the help of the Hoisting concept in JS. So, what basically happens is that though JS interprets line by line it only performs the compilation phase on first priority meaning the variable gets declared, the function gets declared and it ignores all the execution phase like func invocation or variable assignment. Once it's done it performs the execution phase so we can say to understand that the JS engine moves the compilation process on top but it's only for understanding in reality no such moving to top stuff happens.

  • @sayansahoo4746
    @sayansahoo4746 Рік тому +5

    These type of contents are really very good.. Can you also explain the answer in detail if the candidate is unable to answer

    • @careerwithvasanth
      @careerwithvasanth  Рік тому +1

      Sure Sayan, once I finish all mock interview series, will make one video that contains explanation for all.

  • @adwaithks
    @adwaithks Рік тому +2

    Blown away by the 1st code snippet question!

    • @careerwithvasanth
      @careerwithvasanth  Рік тому +1

      Thanks for commenting. In case if you not subscribed to my channel please subscribe and press the bell icon and watch all my videos.

  • @jayshah4456
    @jayshah4456 Рік тому +3

    content is awesome 🎉
    but if possible then please explain those question in detail which candidate not answer or explain about it. it will be very helpful

    • @careerwithvasanth
      @careerwithvasanth  Рік тому +1

      Thanks for commenting. In case if you not subscribed to my channel please subscribe and press the bell icon and watch all my videos. Answering your question, I will make one consolidate video once I complete all mock interviews and I will try to explain all these problems there.

  • @digvijaysingh9028
    @digvijaysingh9028 Рік тому +5

    Great set of questions brother !! Will appreciate if you can provide answers to questions which candidate didn’t answered correctly

    • @careerwithvasanth
      @careerwithvasanth  Рік тому +3

      Thanks for commenting. In case if you not subscribed to my channel please subscribe and press the bell icon and watch all my videos. Answer to your question, I will make one consolidated video after I complete mock interview series and solve all these problems there.

  • @user-lv4xy9tx1p
    @user-lv4xy9tx1p 5 місяців тому +1

    Like your javascript snippet part as its most asked question and we often get confused

  • @tejasdasare129
    @tejasdasare129 Рік тому +2

    Snippet 2- As it was an arrow function and as it was called before the declaration it was giving an error.

    • @careerwithvasanth
      @careerwithvasanth  Рік тому

      Right answer Tejas, In case if you not subscribed to my channel please subscribe and press the bell icon and watch all my videos.

  • @vishalgangde702
    @vishalgangde702 10 місяців тому +1

    You're doing a great job vasant sir 👍🏻💯 Highly Appreciated your efforts ❤️

    • @careerwithvasanth
      @careerwithvasanth  10 місяців тому

      Thanks a ton !! share channel details with you're friends !

  • @user-xy8it2zu8s
    @user-xy8it2zu8s 5 місяців тому +1

    your videos helped me alot to clear my concepts

  • @renukachoudharyart
    @renukachoudharyart Рік тому +1

    great vdo sir..please post more vdo like this .. this is really helpful

    • @careerwithvasanth
      @careerwithvasanth  Рік тому

      Thanks Renuka, more such videos are on the way !! please share channel details with your friends

  • @web-dev.ashishk
    @web-dev.ashishk Рік тому +1

    I learn alot from this video ❤ thank you so much 💓 make more content like this 💕

    • @careerwithvasanth
      @careerwithvasanth  Рік тому +1

      Thanks Ashish, please share the channel details with your friends !!

  • @ArpithaIndira
    @ArpithaIndira 21 день тому

    Practical examples like in real time applications are asked more often..could you please make a video on these 🙏

  • @showkathjaleel7315
    @showkathjaleel7315 Рік тому +1

    Learned something new . Also waiting to get an interview with you .

    • @careerwithvasanth
      @careerwithvasanth  Рік тому

      Hi, thanks for comments. If it's financially feasible, you can always setup a session with me here: topmate.io/vasanth_bhat

  • @sakshamsrivastava6280
    @sakshamsrivastava6280 Рік тому +1

    This is Beautifully done!!!!!!!!!!!!!

  • @phaddu7737
    @phaddu7737 Рік тому +3

    In the first snippet: I think const only applies to 'a' in the declaration and the other two b, c are not block scoped. I may be wrong.

  • @moyezrabbani637
    @moyezrabbani637 8 місяців тому +1

    I am able to answer most of the questions now.
    Guess am ready for interviews.

  • @anubhavmahajan230
    @anubhavmahajan230 Рік тому +1

    The code snippets were really good.

    • @careerwithvasanth
      @careerwithvasanth  Рік тому

      Thank you Anubhav. In case if you not subscribed to my channel please subscribe and press the bell icon and watch all my videos.

  • @AbhishekKumar-vl3cb
    @AbhishekKumar-vl3cb Рік тому +1

    Great mock interview ❤

    • @careerwithvasanth
      @careerwithvasanth  Рік тому

      Thank you and you can watch more mock interviews here: ua-cam.com/play/PLmcRO0ZwQv4SwXLVpnKb_nFQx1Wd2XEjD.html

  • @kanaiyatiwari6748
    @kanaiyatiwari6748 Рік тому +1

    Sir please make video on frontend end system design like the complex trading app zerodha and money control and how it works

    • @careerwithvasanth
      @careerwithvasanth  Рік тому

      Thanks for commenting Kanaya. In case if you not subscribed to my channel please subscribe and press the bell icon and watch all my videos. Actually I'm planning to do them, as it requires some research it's taking sometime. But soon you will see system design videos in my channel.

  • @venkatraja443
    @venkatraja443 9 місяців тому +1

    What skill expected for a front end architect position like 12 to 15 years of experience? Please make one video for this for front end. Please help us for scenior persons

    • @careerwithvasanth
      @careerwithvasanth  9 місяців тому

      This is a very elaborated topic, let me add it my list of backlog items and try to make a video on it.

  • @vishnuvdev7787
    @vishnuvdev7787 9 місяців тому

    great job bro. highly appreciate your efforts :) 😇

  • @vinayakmalladad
    @vinayakmalladad 5 місяців тому +1

    Can you please answer the the question if person is not able to answer questions u asked

    • @careerwithvasanth
      @careerwithvasanth  5 місяців тому

      Yes, that was a plan where I make video on all the questions that I asked, let me make those videos as part 2.

  • @funny_shorts7350
    @funny_shorts7350 3 місяці тому

    Good

  • @KING-ej5qj
    @KING-ej5qj 6 місяців тому +1

    how many years of experience does he have ?

  • @ravindrayadav1504
    @ravindrayadav1504 Рік тому

    provide link of all question and answer

  • @shubhanshusahuu
    @shubhanshusahuu 2 місяці тому

    Wtf meanse mid range engineer??? 🤨🧐

  • @vinyass3733
    @vinyass3733 Рік тому +1

    What is mid range Engineer?

  • @ekansh03
    @ekansh03 Рік тому +1

    1st output question explanation?