Complete ReactJS Interview Prep🔥: Top 10 Questions and Answers for Beginners | Ace Your Interview!

Поделиться
HTML-код
  • Опубликовано: 31 май 2024
  • #interview #react #reactjs #frontend #javascript
    ‪@careerwithvasanth‬ is a RUclips channel dedicated to helping candidates clear their interview. There are more than 150 videos and new videos will be uploaded every week. If you're seriously preparing for interviews and looking for tips and tricks, please subscribe to my channel and press the bell icon.
    To get a dedicated one on one, you can reach out to me here: topmate.io/vasanth_bhat
    Link to questions: github.com/coolvasanth/reactj... (Don't forget to star the project)
    Join CareerwithVasanth community to discuss with other developers: t.me/uncommongeek.
    Follow me on LinkedIn - / careerwithvasanth
    Join my 3100+ members frontend developer telegram group here: t.me/uncommongeek
    Medium Blog: / careerwithvasanth
    JavaScript Interview preparation series : • Watch this series and ...
    JavaScript Custom implementation/polyfills Series: • Learn Custom implement...
    Frontend system design series: • 🔥 What is frontend Sy...
    MAANG series for frontend developer: • First ever MAANG serie...
    Frontend mock interview series: • ReactJS & JavaScript M...
    Shorts for quick access to all frontend resources: • MAANG interview Qstns ...
    Tips for freshers: • 🔥 Every Engineering S...
  • НаукаНаука

Комментарии • 57

  • @sambose8243
    @sambose8243 27 дней назад +6

    This channel is very underrated. You deserve 1M subscribers, bro. Hopefully you'll reach it soon 😊

    • @thelyricsguy3094
      @thelyricsguy3094 27 дней назад +1

      Exactly because of him only I aced my last interview

    • @careerwithvasanth
      @careerwithvasanth  27 дней назад +1

      Thank you so much 😀 both !! hoping for the same !

  • @sambose8243
    @sambose8243 27 дней назад +4

    For Q8, I think it will work if we use prevState + 1 in the setValue

  • @ngayathri1818
    @ngayathri1818 21 день назад +2

    Its really very useful bro. Keep going.
    1. 2 as useState schedule the update and useEffect refer the initial value only
    2. Hello , when we click the button it changed to "React" due to setState
    3. after 1s, It will print 1 and again each 1s interval, count is incremented by 1
    4.setState scheudle the update and 1 will be printed
    5. if we use prevState, then react will remember and update the previous state.
    6.setTimeout form closure with setCount and its not update at that time. so result will be 1 but alert will be 0
    7. 5 -> wrong
    8. 1,2,3 -> wrong. we can use prevState => prevState + 1
    9. 1 because of closure
    10. increment by 1

  • @mahalingappabirajdar5285
    @mahalingappabirajdar5285 6 дней назад

    Thank you for explaining each and every concept in an easy-to-understand manner

  • @as_if
    @as_if 20 дней назад +1

    22:15 that could be done adding count in the dependency array too, other than using prevState

  • @shubhamkakad10x
    @shubhamkakad10x 27 дней назад +2

    thank you for this

  • @omgupta777
    @omgupta777 9 дней назад

    Thankyou so much🎉

  • @SandeepMaraboina
    @SandeepMaraboina 26 дней назад +1

    Q8 use value in dependency array

  • @khanapeena2191
    @khanapeena2191 27 дней назад +1

    I am not sure about it but you can put value in a dependency array.

  • @mayurwankhade7447
    @mayurwankhade7447 25 дней назад +1

    Q 8 - setValue(prevValue => prevValue+ 1)

  • @as_if
    @as_if 20 дней назад +1

    So setState works asynchronously, that's why unless passed a callback function, it doesn't consider the last updated value by it's brother setState.
    The callback function makes sure to execute the setState in order, they are called, even if they are asynchronous.

  • @ankushladani496
    @ankushladani496 23 дня назад +1

    Thanks for this awesome knowledge...❤😊

  • @madhanravi4365
    @madhanravi4365 27 дней назад +1

    Thanks a lot for this, need more like this ❤

  • @SunilKumar-cq8gu
    @SunilKumar-cq8gu 25 дней назад +1

    Q8-using prevState=>prevState+1 would work

  • @sivakarthikeyans3519
    @sivakarthikeyans3519 27 дней назад +1

    i was able to answer 4 out of 10.
    and i almost guessed in 2 other excercises.
    again thank you vasanth. it's very helpful and interesting.

  • @Zaheer__zk40
    @Zaheer__zk40 20 часов назад

    "Great questions."

  • @SunilKumar-cq8gu
    @SunilKumar-cq8gu 25 дней назад +1

    Your efforts are worth it, learnt a lot from you

    • @careerwithvasanth
      @careerwithvasanth  22 дня назад

      Thank you !! new video will be out this Saturday on similar way for JavaScript

  • @arpitham8104
    @arpitham8104 15 дней назад +1

    Please continue these series please 🙏

    • @careerwithvasanth
      @careerwithvasanth  14 дней назад +1

      You will see more videos coming week !! recording them tomorrow

  • @ankushladani496
    @ankushladani496 23 дня назад +1

    3) initially 0 and after 1 second count will be 1

  • @popilarflims5397
    @popilarflims5397 2 дня назад

    The second snippet is the correct one. Here's why:
    ### First Snippet:
    ```javascript
    import React, { useState, useEffect } from 'react';
    function App() {
    const [value, setValue] = useState(0);
    useEffect(() => {
    const timer = setInterval(() => {
    console.log('value is', value);
    setValue(value + 1);
    }, 1000);
    return () => clearInterval(timer);
    }, [value]);
    return {value};
    }
    export default App;
    ```
    ### Second Snippet:
    ```javascript
    import React, { useState, useEffect } from 'react';
    function App() {
    const [value, setValue] = useState(0);
    useEffect(() => {
    const timer = setInterval(() => {
    console.log('value is', value);
    setValue(value => value + 1);
    }, 1000);
    return () => clearInterval(timer);
    }, []);
    return {value};
    }
    export default App;
    ```
    ### Explanation:
    1. **Dependency Array in `useEffect`:**
    - In the first snippet, `useEffect` has `[value]` as its dependency array. This causes the effect to run every time `value` changes. However, this leads to multiple intervals being set up because each time `value` changes, the effect will clean up the old interval and set a new one. This is not the desired behavior for this scenario.
    2. **State Update Function:**
    - The second snippet correctly uses the functional form of `setValue` (`value => value + 1`). This ensures that `setValue` is called with the latest value of `value` without relying on the closure from the initial render.
    3. **Stable Timer Setup:**
    - In the second snippet, `useEffect` has an empty dependency array `[]`, which means the effect runs only once after the initial render. This ensures that only one interval is set up, and it correctly updates the state every second.
    ### Conclusion:
    The second snippet correctly sets up the interval only once and updates the state properly using the functional form of the state setter. Therefore, the second snippet is the correct one to use.
    For Question No-8

  • @jyotighali8002
    @jyotighali8002 21 день назад +1

    can you please make more question like this , I will be more help full for preparing interview

    • @careerwithvasanth
      @careerwithvasanth  16 дней назад

      Planning for the same ! you will see more content soon !

  • @ankushladani496
    @ankushladani496 23 дня назад

    Please explain exercise 3.

  • @ankushladani496
    @ankushladani496 23 дня назад +1

    2) React

  • @ankushmudgil9352
    @ankushmudgil9352 9 дней назад

    In excercise -4 how 4 zeros are consoled??

  • @harshadevi982
    @harshadevi982 17 дней назад +1

    Hi Sir,Thanks for the amazing content.
    I have 2 years experience in testing but i sn planning to switch to frontend role.Learning html Css and js.Can you please share any road map or path to secure a job as i am not having real time experience in front end.

    • @careerwithvasanth
      @careerwithvasanth  16 дней назад

      Hi please join our group here : t.me/uncommongeek and discuss

  • @vijrah3600
    @vijrah3600 17 дней назад +1

    Sir, please make card or a scroll to answer the comment , if you tell it 10 times some times its gives a wrong effect, I have a gaming channel it worked bad for me , huge respect sir

  • @mohammadabbas1623
    @mohammadabbas1623 27 дней назад +1

    Amazing

  • @Abhi_Thakur01
    @Abhi_Thakur01 15 дней назад +2

    Keep vs code and browser in dark mode 📳

  • @VivekChavan-ov3pl
    @VivekChavan-ov3pl 26 дней назад +1

    Where is your tg channel link of uncommon geeks

    • @careerwithvasanth
      @careerwithvasanth  26 дней назад

      t.me/uncommongeek Here is my telegram group !!

    • @VivekChavan-ov3pl
      @VivekChavan-ov3pl 26 дней назад +1

      @@careerwithvasanth it says it's private unable to join, I was part of it

    • @VivekChavan-ov3pl
      @VivekChavan-ov3pl 26 дней назад

      @@careerwithvasanth why it is private now

    • @careerwithvasanth
      @careerwithvasanth  25 дней назад

      @@VivekChavan-ov3pl yes it's a private group I have approved it.

    • @VivekChavan-ov3pl
      @VivekChavan-ov3pl 25 дней назад +1

      @@careerwithvasanth any way I can join

  • @bishalkar5614
    @bishalkar5614 26 дней назад

    Sir! Buy an iPad! You need. It's expensive but worth it for a content creator like you.

  • @keshavkagrawal
    @keshavkagrawal 27 дней назад +2

    Sir, everyone acknowledges your efforts in helping us but using VSCode in light mode is absolutely criminal.