Learn useRef in 11 Minutes

Поделиться
HTML-код
  • Опубликовано: 4 янв 2025
  • 🚨 IMPORTANT:
    Full React Course: courses.webdev...
    In this video I cover everything you need to know about the useRef hook. I go over all the main use cases for useRef as well as many common mistakes that developers make. This is part of a series of React videos where I cover all the important hooks in React.
    📚 Materials/References:
    useRef Blog Article: blog.webdevsim...
    React Hooks Playlist: • React Hooks
    🧠 Concepts Covered:
    How to use hooks in React
    How to store values between renders in React function components
    How to use the useRef hook
    🌎 Find Me Here:
    My Blog: blog.webdevsim...
    My Courses: courses.webdev...
    Patreon: / webdevsimplified
    Twitter: / devsimplified
    Discord: / discord
    GitHub: github.com/Web...
    CodePen: codepen.io/Web...
    #ReactJs #WDS #useRef

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

  • @dhruvmaindola5767
    @dhruvmaindola5767 Год назад +227

    If anyone is still confused about the last example. Here is a simple explanation.
    Just keep three things in mind.
    1. useState() causes re-render.
    2. useRef() DOESN'T cause re-render.
    3. useEffect() runs AFTER render.
    So the flow goes like this. name = "" prevName = ""
    -> Lets say you put "A" in the text field , so setName() runs. Changes the value of name = "A" to this. Component renders.
    -> Then useEffect is run where you set prevName to name. prevName is the same as name which is "A" but here comes the 2nd point i wrote. useRef() DOESN'T cause re-render.
    -> So when you changed the name , component got rendered and useEffect caused the prevName to change. But the thing is that component has already been rendered with whatever value prevName HAD before setName() got called.
    prevName is not STORING the previous value of name. It is only DISPLAYING the previous value of name.
    Hope this helps.

    • @omyerawar7976
      @omyerawar7976 Год назад +6

      Great Explanation 🤩

    • @user-zv6bv7eu8k
      @user-zv6bv7eu8k Год назад +2

      Is it safe to say that useEffect() uses the data from the previous render ??? and I understand we store it in a useRef() since it wont cause a rerender .... but what's the difference using a useRef() variable oppose to just updating a normal variable ... NEED HELP

    • @waynerandom11
      @waynerandom11 Год назад +6

      @@user-zv6bv7eu8k Because if you change the declaration to be const prevName = , then prevName would be set to at the start of every re-render whereas const prevName = useRef() will set prevName to only on the first render. Subsequent renders will set prevName to the whatever the last assigned value was. Hope that helps!

    • @sarveshwarpandey9516
      @sarveshwarpandey9516 Год назад +1

      thanks!

    • @dongbinkim3773
      @dongbinkim3773 11 месяцев назад +1

      @@waynerandom11 Thanks for your great explanation!

  • @Gabrielito300
    @Gabrielito300 4 года назад +452

    I rarely use to comment on videos, but i think this video deserves an specific acknowledgment. It was an excellent explanation about useRef, and the way that you showed the difference between it and states is super important. I hope you keep helping us, amateur web developers, to keep improving. Hope you have a lovely weekend ❤

    • @WebDevSimplified
      @WebDevSimplified  4 года назад +32

      Thank you so much!

    • @mattmarkus4868
      @mattmarkus4868 3 года назад +5

      i agree. i would like to see more advanced stuff, because he explains things very well and clearly.

  • @cristianouzumaki2455
    @cristianouzumaki2455 4 года назад +223

    I might purchase your course despite already knowing react. great vids bro.

  • @elie3423
    @elie3423 3 года назад +118

    for people confused of what is happening in the last use case of useref, useEffect by definition runs after the things gets rendered.
    so he is basically printing the value of the useState before assigning it in the useEffect

    • @anandkrishnanmj95
      @anandkrishnanmj95 3 года назад +4

      Thanks for clearing that, have been looking through the comments to figure that out.😃

    • @anandkrishnanmj95
      @anandkrishnanmj95 3 года назад +20

      And after the render, useEffect gets called and changes the value of prevName.current to current name,
      And even though the prevName.current currently holds the current name after useEffect, it won't trigger a re-render
      And that's why the prevName.current used in the return statement prints the previousName right?

    • @veselinmladenov7941
      @veselinmladenov7941 2 года назад +4

      Thank you for that Elie, I spent a decent time trying to understand what is going on and why is behaving that way.

    • @zksumon847
      @zksumon847 2 года назад +1

      Thanks a lot

    • @marco8673
      @marco8673 2 года назад

      thank you very much!!!

  • @wawayltd
    @wawayltd 3 года назад +45

    I hope this comment will help someone who can't get a grip on it like I couldn't for some time... When you are trying to understand logic of these processes explained in the video, just keep in mind one important thing - useEffect() only runs AFTER your component is rendered. Like in the last example where we trying to get previous value of our name, I would say that prevValue.current is not actually storing the value of our previous name, it displays it as component renders - then useEffect runs, prevValue.current now storing value of current name, but because useRef doesn't make component to re-render, it "keeps that in mind", but doesn't display it till the next time component is rendered.
    Oh gosh.. I was hoping I'll put it simple. I hope it makes sense. It took me while to figure out logic and I feel need to share it with people.

  • @mrarc197
    @mrarc197 4 года назад +72

    Im using most of things you teach on daily basis but I am still watching your videos and in many cases Im finding gems that I never even thought about. Good job mate, keep doing it, its good content.

  • @nazarabdurakhimov2859
    @nazarabdurakhimov2859 Год назад +8

    Hey Kyle, I'm watching some paid React course, but when something is unclear, I open RUclips and specifically look for your videos - I find them super useful, you can explain difficult concepts in a clear and relaxed way. I can see how every aspect of your videos (intro, speech, explanation, examples) are thoroughly thought out. Thx a lot for all of your effort!

  • @sakshichoudhary7842
    @sakshichoudhary7842 4 года назад +14

    Finally understood Refs properly.. You are a saviour❤️

  • @alizarean5080
    @alizarean5080 10 месяцев назад

    after searching for about 5 hours this video finally answered all my questions. I can't thank you enough buddy. I wish you the best of bests.

  • @temzeks
    @temzeks 4 года назад +5

    not gonna lie, i went through the useRef from one of the react books today, and i didnt understand what it was, this video somewhat made it brighter for me, but not entirely. Gotta rewatch it in the morning! Keep it up

  • @callixtegirard4782
    @callixtegirard4782 3 месяца назад

    Man you're just so much the best React teacher out there. Perfectly structured, bite-sized lessons. 💪

  • @luis_soul1
    @luis_soul1 3 года назад +4

    I struggled a little bit trying to understand Ref in React and I constantly found a bunch of explanations with examples but no other like this video. It made me understand everything. Thank you so much Kyle, shout out to you for explaining Ref very simple and concise.

  • @jayantakumarroy543
    @jayantakumarroy543 3 года назад +1

    I really like the calm voice without super hyped energy,coz that's what i need for an educational video

  • @mtsurov
    @mtsurov Год назад +2

    Best 10 minutes I've spent today.

  • @liamwelsh5565
    @liamwelsh5565 2 года назад +52

    Little shortcut. Instead of doing const something = useRef(), you can use object destructoring and set it to const {current: something} = useRef(). This allows you to access your ref without needing .current.

    • @hatem.tommy.lamine
      @hatem.tommy.lamine Год назад +15

      doesn't work, because you have to set ref={something} later on

  • @sudarshankj
    @sudarshankj 3 года назад +2

    What I truly love about your videos are: They are really crisp and cover the crux of the topic magically in a very small amount of time! That takes great skill, keep it up!

  • @iamnadeemzafar
    @iamnadeemzafar 3 года назад

    I was googling for the actual use case of useRef and after long time i got satisfied watching your video ... You told exactly what i wanted to know.... A lot of tutorial had the same caption but not worth satisfying.
    And the most appreciable is that you only took few minutes..

  • @gerasmaster2099
    @gerasmaster2099 2 года назад

    Every time I need to learn something new about JavaScript, I look for your videos. You explain everything so clear it couldn't be better

  • @DaggieBlanqx
    @DaggieBlanqx 4 года назад +2

    After watching the video I accidentally closed the tab. Now I am back, just give this video a like because your tutorials are really helpful.

  • @zain2314
    @zain2314 4 года назад

    bro i have been following your tutorial and none of them have failed to amaze me, your explaination is so onpoint and simple.

  • @cobaltninjas
    @cobaltninjas 2 года назад

    I honestly never thought of using useRef for anything other than DOM elements.
    This is brilliant.

  • @wcw23085
    @wcw23085 3 года назад

    YOU ARE A LIFESAVER!!!! Been searching for how to reference a DOM node in React and here you are showing me what I've been looking for the WHOLE DAMN DAY. THNAK YOU!!!!!!!! AHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH

  • @balajiganesh4246
    @balajiganesh4246 3 года назад +2

    That was super useful bro. I always felt this concept was too complex and always avoided it. Now, I have a decent clartity within 10 mins. Thanks a lot

  • @siddharthmagadum16
    @siddharthmagadum16 3 года назад +6

    Just for my reference 9:07 .
    Q) Why is prevName not same as name, as due to state change the render has happened and after the render has happened, the useEffect has called, hence prevName should be same as name (updated)?
    Ans -
    > the state is set asynchronously.
    > the callback function in useEffect is executed synchronously.
    I believe this happens -
    As the state is set asynchronously, the rendering happens first and then the state value changes.
    Within that time, as rendering has alredy been done, the useEffect is executed and the old value of name is declared to prevName.
    Till now, the asynchronous state is completed and the name is got the new value.

    • @tinujos8306
      @tinujos8306 3 года назад

      But why use useRef when you can store the previous name value in a simple let variable?

    • @siddharthmagadum16
      @siddharthmagadum16 3 года назад

      @@tinujos8306 Those variable values will be reset after every re-render, and you will lose the value stored

    • @praveenbabu9048
      @praveenbabu9048 4 месяца назад

      I don't think it happens this way. Instead I believe it works like this
      -Initially both state and ref are ''
      -User types 'a'
      -State change (synchronous) state = 'a' , ref = ''
      -Re-render as state is changed
      -All the UI is painted with the current state and ref value.
      -Use effect is called since the component is mounted after re-rendering
      -Current state value is assigned to the ref. (now ref = 'a')
      -UI remains same (as change in ref doesn't cause any re-render)
      -User types 'b' next to 'a'
      -State change (synchronous) state = 'ab' , ref = 'a'
      -Re-render as state is changed
      -All the UI is painted with the current state('ab') and ref value('a').
      Correct me If I am wrong.

  • @starwarsfan9575
    @starwarsfan9575 4 года назад +2

    I don't get time to learn by myself because of busy work schedule but through your quick and easy videos like this one I am able to....thanks! Keep up the good work!

  • @andrewsmichael7047
    @andrewsmichael7047 2 года назад

    Thank you so much bro, I used to be confused about refs most times even the react docs didn't make it as clear as this video. Thanks a lot

  • @tejasmuthya4492
    @tejasmuthya4492 2 года назад

    GOD BLESS YOU! I have a React interview tomorrow and feel very confident after watching your useMemo, useCallback and useRef videos!

  • @quietcalm7299
    @quietcalm7299 4 года назад +5

    I never comment on videos but this explanation was so spot on - it helped me so much converting a tutorial that was using dom selectors into react-syntax. So thanks a lot :)))

  • @nigelbess5168
    @nigelbess5168 8 месяцев назад

    Your content really breaks these down in a useful way. Thanks so much, youve saved me a lot of time.

  • @evergreen7781
    @evergreen7781 3 года назад

    I think you have the best videos for react hooks on RUclips

  • @exceptionalbuildingservices
    @exceptionalbuildingservices 4 года назад

    Mate I watched so many videos and read so many articles, but I never saw anything like yours! Short and very well explained. That's what I needed! Thanks!!!

  • @andreranulfo-dev8607
    @andreranulfo-dev8607 2 года назад

    So happy to see this Channel almost reaching 1MI subscribers.

  • @aldhie33
    @aldhie33 2 года назад

    thank you so much. i spend two hours read the doc and it still confuse me, but with your explanation, it makes me understand the way to use this hooks. 😲😲

  • @fahmidatasnimlisa2592
    @fahmidatasnimlisa2592 4 года назад +1

    I'm pulling an all-nighter and i got my final exam on React in a couple of hours. Thanks for the video, so greatly explained

  • @braingamedotcom
    @braingamedotcom 18 дней назад

    legendary channel, the gift that keeps on giving

  • @IvinAustan
    @IvinAustan Год назад

    Really had a great experience of knowing all the react hooks use cases. You did a very good job. Kudos, man!!!

  • @KamilHussainShaikh
    @KamilHussainShaikh 3 года назад +1

    The quality of your presentation is appreciated.
    Thank you for the videos.
    May Allah reward you for your efforts.

  • @franco-cespi
    @franco-cespi 4 года назад +6

    As with useMemo I thank you for thining down the difficult concepts of React. Greate examples! I can't wait to see some more hooks simplified.

  • @abrahamgeorge7466
    @abrahamgeorge7466 9 месяцев назад

    Very high quality content.After watching many useRef videos ,i only understood from your video.

  • @Rodo1802
    @Rodo1802 Год назад

    I love you, Kyle! You’ve made my React Day with this video. 🙏🏼 thank you!

  • @anilsuyal
    @anilsuyal 7 месяцев назад

    Wow! what a straightforwad amazing explanation to useRef. I was tired understanding it from lot of videos and docuementation, but understood only because of you. thank you sir

  • @limji-siang6496
    @limji-siang6496 3 года назад +8

    For the first example of not causing infinite loops we can add the name dependencies in the useEffect too.

    • @seshaganesh8323
      @seshaganesh8323 2 года назад

      No,.. it will have a bug. Initially it will re-render once as it have changed the counter variable which is a state which over mutation cause a re-render. So an empty input have a count of 1 but we need a count of 0. This is where ref are used which dont cause re-rendering

    • @joeellul-turner1280
      @joeellul-turner1280 2 года назад

      That's what I thought

  • @saranshmehra8577
    @saranshmehra8577 2 года назад

    I somehow stumbled upon this video... Amazing Content.!! just wow!!. If you wanna learn refs then this is the ultimate source.

  • @fluntimes
    @fluntimes 2 года назад

    The. Best. Explanation. Of. useRef. On. The. Internet!

  • @raghavsingh5592
    @raghavsingh5592 3 года назад

    You solved the problem for which I sat for hours. Thank you very much.

  • @csmnitemare4532
    @csmnitemare4532 2 года назад

    These vids are gold!!! thank you for helping this aspiring dev understand things that some seem to just gloss over or explain horribly.

  • @nareshbhati7527
    @nareshbhati7527 3 года назад

    Thank you, you always give new knowledge. In 10 minutes you clear the concepts of 1 hour. Thank you so much for saving us a lot of time.

  • @raffibags
    @raffibags 4 года назад

    By far the best explanation of the useRefs hook I've seen. Well done.

  • @Ichigo-kurusaki580
    @Ichigo-kurusaki580 2 года назад

    Dude you explain such topics so good with easy examples and simple usecase that before even going anywhere else to understand some concept i made it a habit to go through your videos first. Thanks for uploading

  • @FL4M3M4K3R
    @FL4M3M4K3R Год назад

    perfect explanation, so i dont need any more videos about topic. Its high level, thank you Kyle ;)

  • @deepanshukhorwal8938
    @deepanshukhorwal8938 Год назад

    your content is fabulous and most useful for working professionals

  • @durgaprasaddas6494
    @durgaprasaddas6494 2 года назад

    Man!! this is the most informative and well explained.

  • @hamzahahmad1670
    @hamzahahmad1670 4 года назад +63

    Thank you for the thorough explanation.
    I have a question that is slightly unrelated to this lesson. At the 08:49 mark, how were you able to access the previous state of the name variable? Shouldn't the name variable have been updated till then?
    I tried figuring this out myself, so I also put a console.log in there. However, the console log was showing the updated state variable, while prevName.current still contained the old state.
    This is a bit confusing, so I would appreciate it if anyone could help or point me towards a resource that could explain this. Thank you.

    • @naymello
      @naymello 4 года назад +58

      useEffect is called after the render, so it renders the previous name and only after it happens it gets the value of the current name

    • @siddharthmagadum16
      @siddharthmagadum16 3 года назад +1

      > the state is set asynchronously.
      > the callback function in useEffect is executed synchronously.
      I believe this happens -
      As the state is set asynchronously, the rendering happens first and then the state value changes.
      Within that time, as rendering has alredy been done, the useEffect is executed and the old value of name is declared to prevName.
      Till now, the asynchronous state is completed and the name is got the new value.

    • @avonflex5031
      @avonflex5031 3 года назад

      @@siddharthmagadum16 have you done a setstate , then a {state} below it..

    • @vickylance
      @vickylance 3 года назад

      @@siddharthmagadum16 If the state is set asynchronously, the rendering happens first and then the state value changes. Then how does when you print the state value it has the latest value?

    • @Vivek-tj5xh
      @Vivek-tj5xh 3 года назад

      execute the same code, and console log the value of prevName.current you'll figure it out yourself

  • @rohits_frame
    @rohits_frame 3 года назад

    It's always great to watch your video, Even if I know some topic and watch your videos, there is always something new that I get to know.
    Keep doing the good work brother.

  • @b1ackbrd1
    @b1ackbrd1 3 года назад

    After watching this I used it in one of our Video player component and its just awesome. Thanks a lot for this video

  • @viniciusalvess
    @viniciusalvess 2 года назад

    I had a situation where I had to read qr codes, but the qr code component triggered and event multiple times when the camera was reading the qr code because of motion and low delay tim. I couldn't increase the delay time, because it would take too long to scan many qr codes and useRef hook helped me to solve my issue. Thanks Kyle for the great video.

  • @ambrozykleks626
    @ambrozykleks626 2 года назад

    Great stuff, sir. Never thought about Ref that way.

  • @karthickr1994
    @karthickr1994 4 года назад

    This guy deserves a like. Impressive mate. Thank you.

  • @DonWhatever221
    @DonWhatever221 2 года назад +2

    2:40 Giving the useEffect a dependency array with "name" in it will lead to the desired output without unnecessary rerenders. So this specific example is indeed possible with useState...

  • @dmytro-skh
    @dmytro-skh 2 года назад

    it is really surprising how good you are at explanations

  • @rayanfernandes2631
    @rayanfernandes2631 3 года назад

    Clear cut explanation ... Thanks kyle.. You are amazing person.

  • @mountainscott5274
    @mountainscott5274 3 года назад +1

    this is a good explanation but it is important to understand that the same can be achieved at 2:40 by coding:
    useEffect(()=>{
    setCount(prevCount=> prevCount + 1)
    }, [name])
    the second parameter to the useEffect hook tells the function to only update when the state changes for the variable in square brackets. In the case, the variable is "name" and so the count would only update for every keystroke in the input box (which has a value based on the state of "name").

    • @vasilkotsev9923
      @vasilkotsev9923 3 года назад +1

      I've noticed the same fact and started to read the comments if anybody had noticed it too. So the first use case is not so useful. We can achieve the same result with adding [name] in the second parameter.

  • @0x0abb
    @0x0abb 2 года назад

    Web Dev Simplified is so awesome - I agree -one must show gratitude - great work!

  • @soorya3562
    @soorya3562 3 года назад

    Best explanation for useRef. Keep the goo work brother !

  • @motilimkayes1352
    @motilimkayes1352 4 года назад +2

    Wow, thanks man, I'm going to re-watch this playlist every week or so for some time.

  • @jackmiller2518
    @jackmiller2518 2 года назад

    Straight forward, Perfectly explained with no bs, thanks a lot!

  • @user-fg6ng7ej6w
    @user-fg6ng7ej6w 2 года назад

    this playlist is very helpful: clearly explained, yet complete and concise. thanks.

  • @osamapervezriar387
    @osamapervezriar387 Год назад

    As always liking the video before actually watching it because i know the explanation is going to be amazing anyway! thanks Bro!!

  • @sam12345393
    @sam12345393 2 года назад

    Awesome explanation dude, I hardly comment on tech tuts, you are just so eloquent and precise. Keep up the good work!

  • @chunkwanchan5503
    @chunkwanchan5503 2 года назад

    thank you! think this hook really shed light on my mini project. I can save the previous dom state and render it back on the page now

  • @k.l7111
    @k.l7111 2 года назад

    Clear comparison with useState and nice explanation of rendering lifecycle. Thank you!

  • @LongBoy.0
    @LongBoy.0 4 года назад

    Finally an amazing explainer on useRef. Thanks!

  • @teletoby94
    @teletoby94 Год назад

    Thank you for the concise and easy to understand explainer. Love this and appreciate your work.

  • @RezHimself
    @RezHimself 2 года назад

    this video is so useful , now i know how to use useRef and useState , thanks

  • @tarekghosn3648
    @tarekghosn3648 2 года назад

    thanks i look forward to my project finishing and being able to say your videos were abig part of it

  • @adammescher
    @adammescher Год назад

    Magnificent explanation. Thank you!

  • @go_all_the_way
    @go_all_the_way 2 года назад

    this video just saved my weekend

  • @natnaelsisay1424
    @natnaelsisay1424 4 года назад +1

    No words, Just Thank you brother

  • @mpilodlamini8407
    @mpilodlamini8407 3 года назад

    Massive respect to you thanks for these hooks tutorials. I am hooked no pun intended. Thank you.

  • @fatemehzareie5423
    @fatemehzareie5423 Год назад

    I finally understand "useRef" thank u 😍😍✌️✌️

  • @chrtravels
    @chrtravels 3 года назад

    Great video. Your videos make the topics so easy to understand, thanks for that. I know enough react to get myself into trouble so looking to purchase your course to get some extra depth on the topics.

  • @GoonCity777
    @GoonCity777 Год назад

    Honestly this is better than college. I would even say this is better than a bootcamp too.

  • @atheerapeter5174
    @atheerapeter5174 4 года назад

    I was wondering about how to grab elements in react and this golden video popped up so thank you so much

  • @Skalexsong
    @Skalexsong 3 года назад

    Another great videos that I missed. Thank you !

  • @khgriffi
    @khgriffi 3 года назад

    Excellent tutorial on refs! Just what I needed.

  • @julien2057
    @julien2057 3 года назад

    Crystal clear. Good job.

  • @lpaddikt
    @lpaddikt 3 года назад

    Your videos are always such great content and really like how you make it concise. Awesome job man!

  • @juanignaciodominguez5902
    @juanignaciodominguez5902 3 года назад

    You really simplified my life. Thank you!

  • @rishabhgupta2085
    @rishabhgupta2085 3 года назад

    Most Clear 🔍 explanation on the web 🕸

  • @kingkesylo8516
    @kingkesylo8516 4 года назад +1

    Thanks very much for your videos. all the hooks you explained really makes sense to me now so thanks Mann

  • @williamdaghouz
    @williamdaghouz 4 года назад

    Your explanations are really great!

  • @mochemiguel1233
    @mochemiguel1233 2 года назад

    Best useRef's tuto ever

  • @jacquitratongamanahaja979
    @jacquitratongamanahaja979 3 года назад

    I definitely have to comment bec this video is amazing and the explanation is very concise but clear as well. Thanks bro!

  • @micaeldie8584
    @micaeldie8584 3 года назад

    You blow my mind best video ever! keep the great job

  • @AadeshKulkarni
    @AadeshKulkarni 2 года назад

    Beautifully explained!!

  • @yusufaltundal3482
    @yusufaltundal3482 Год назад

    Thank you for this beautiful explanation.

  • @hdjfgt
    @hdjfgt 4 года назад

    Wow I think useRef finally clicked for me thanks to this video! Thanks a lot!

  • @OmarOnAWave
    @OmarOnAWave 3 года назад

    Amaaaazing explanation !

  • @devidasa9637
    @devidasa9637 4 года назад

    Excellent series of videos..bravo!

  • @basitobaid6903
    @basitobaid6903 2 года назад

    Kyle seriously knows what he is talking about !!!!!!!!!!!!!!!!!