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

Поділитися
Вставка
  • Опубліковано 22 сер 2024
  • #interview #react #reactjs #frontend #javascript
    ‪@careerwithvasanth‬ is a UA-cam 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/vas...
    Link to questions: github.com/coo... (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...

КОМЕНТАРІ • 68

  • @sambose8243
    @sambose8243 2 місяці тому +9

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

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

      Exactly because of him only I aced my last interview

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

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

  • @ngayathri1818
    @ngayathri1818 2 місяці тому +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 2 місяці тому +1

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

  • @sambose8243
    @sambose8243 2 місяці тому +5

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

  • @sivakarthikeyans3519
    @sivakarthikeyans3519 2 місяці тому +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.

  • @daudmir3221
    @daudmir3221 17 днів тому

    Const [ value, setValue ] = useState(0);
    UseEffect (()=>{
    Const timer = setInterval() =>{
    SetValue( prev => prev +1 );
    }, 1000};
    return ( ) => clearInterval ( timer );
    }, [ value ];
    Changes Made
    1- Setting state value to
    prev => prev +1
    to take previous value and increment it.
    2- In useEffect adding the value as dependency, So that whenever value changes it hits UseEffect.

  • @SunilKumar-cq8gu
    @SunilKumar-cq8gu 2 місяці тому +1

    Your efforts are worth it, learnt a lot from you

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

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

  • @madhanravi4365
    @madhanravi4365 2 місяці тому +1

    Thanks a lot for this, need more like this ❤

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

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

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

    I got 8 of them correct in the first 10 seconds also the one with undefined error 😂, great video

  • @ankushladani496
    @ankushladani496 2 місяці тому +1

    Thanks for this awesome knowledge...❤😊

  • @mayurwankhade7447
    @mayurwankhade7447 2 місяці тому +1

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

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

    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

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

      Great explanation., Join our 3100+ member Career with Vasanth telegram group here, you can spend your spare time to help fellow developers t.me/uncommongeek

  • @arpitham8104
    @arpitham8104 2 місяці тому +1

    Please continue these series please 🙏

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

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

  • @khanapeena2191
    @khanapeena2191 2 місяці тому +1

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

  • @ankushladani496
    @ankushladani496 2 місяці тому +1

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

  • @SunilKumar-cq8gu
    @SunilKumar-cq8gu 2 місяці тому +1

    Q8-using prevState=>prevState+1 would work

  • @SandeepMaraboina
    @SandeepMaraboina 2 місяці тому +1

    Q8 use value in dependency array

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

    React always batch the set State together , that's why need to take setState( (prev)=> prevState +1 ) , if the value directly depended on the state.

  • @keshavkagrawal
    @keshavkagrawal 2 місяці тому +4

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

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

    Great video! if possible please provide solutions to achieve the desired output.

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

    In question 8 , value of console.log will be always 0 but in UI for a fraction of seconds you will see in ui 0 and then for all the interval you will always see 1 in UI .
    Please correct this in your video.
    Thanks and happy coding.
    @careerwithvasanth.

  • @jyotighali8002
    @jyotighali8002 2 місяці тому +1

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

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

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

  • @as_if
    @as_if 2 місяці тому +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.

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

    Keep vs code and browser in dark mode 📳

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

    thank you for this

  • @vijrah3600
    @vijrah3600 2 місяці тому +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

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

    "Great questions."

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

      Thank you !! please share channel details with your friends !!

  • @harshadevi982
    @harshadevi982 2 місяці тому +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  2 місяці тому

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

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

    Thankyou so much🎉

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

    In excercise -4 how 4 zeros are consoled??

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

    Exe8 count+=1

  • @ankushladani496
    @ankushladani496 2 місяці тому +1

    2) React

  • @mohammadabbas1623
    @mohammadabbas1623 2 місяці тому +1

    Amazing

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

    Please explain exercise 3.

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

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

  • @VivekChavan-ov3pl
    @VivekChavan-ov3pl 2 місяці тому +1

    Where is your tg channel link of uncommon geeks

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

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

    • @VivekChavan-ov3pl
      @VivekChavan-ov3pl 2 місяці тому +1

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

    • @VivekChavan-ov3pl
      @VivekChavan-ov3pl 2 місяці тому

      @@careerwithvasanth why it is private now

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

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

    • @VivekChavan-ov3pl
      @VivekChavan-ov3pl 2 місяці тому +1

      @@careerwithvasanth any way I can join