Learn useCallback In 8 Minutes

Поделиться
HTML-код
  • Опубликовано: 22 авг 2024

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

  • @nanonkay5669
    @nanonkay5669 4 года назад +797

    useMemo: Returns and stores the calculated value of a function in a variable
    useCallBack: Returns and stores the actual function itself in a variable

    • @GuitarreroDaniel
      @GuitarreroDaniel 4 года назад +4

      Thanks man!

    • @h2o313
      @h2o313 4 года назад +21

      good summary. I often found "useCallBack" is handy when you're passing the parent's setState function down to its children.

    • @Vishal-ki2df
      @Vishal-ki2df 3 года назад +6

      Why can't we use useEffect instead of
      useCallback?

    • @vijaykumarreddyalavala3713
      @vijaykumarreddyalavala3713 3 года назад +46

      @@Vishal-ki2df Using useEffect you can run a function when a variable changes. But that does not mean that function will not run when the other state variables in your component change. Using useCallback you can make sure that the function runs exactly when you want it to run based on changes in a variable instead of everytime the whole component renders.

    • @ParadoxWorks
      @ParadoxWorks 3 года назад +3

      @@vijaykumarreddyalavala3713 Freaking nicely explained

  • @pawandeore6989
    @pawandeore6989 Год назад +68

    for someone who is confused the main difference between useMemo and useCallback is usMemo cache values and useCallback caches the function itself

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

      @@xlgnepoTechnically, you can achieve a similar effect by using useMemo to memoize a function, but it's not semantically the same as using useCallback. useCallback is specifically designed to memoize functions to ensure stable identities across renders, which is crucial for performance optimizations, especially when passing functions as props to child components. It's more explicit and conveys the intention more clearly. So while useMemo can be used for this purpose, useCallback is the recommended approach for memoizing functions in React components.

  • @tomaszkapalka
    @tomaszkapalka 2 года назад +31

    I am always impressed how you can explain quite complicated things in a simple way! As always...great job and many thanks!

  • @oracleking4252
    @oracleking4252 3 месяца назад +1

    I love this guy. He breaks it down!!!! Wherever I am, whatever mess I am in, I look for him to solve me problems. He's my personal full stack overflow

  • @Shoulon
    @Shoulon 4 года назад +21

    This is really awesome. I was building a grid that was initially built from a function then would set it to state. But my other components would force it to rebuild everytime. UseCallback fixed this issue!

  • @davidserranoii4114
    @davidserranoii4114 4 года назад +9

    Your understanding is inspirational. The biggest take away from this video im getting is to look behind the scenes to improve your code so you can run as efficiently as possible. Always look forward to your videos

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

    Just watched your useMemo video and I was really confused between these 2 hooks but this video clears everything... Thanks Kyle : )

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

    This is awesome. I’ve been wondering about the differences for ages. I feel like Kyle just granted me a super power 😎

  • @angell2341
    @angell2341 3 года назад +3

    Explaining the usecase on why we have to use that is really ausum, I felt ur channel unique

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

    Ha, I’m so glad I found this channel. I’m going to be busy watching these the next few days! 😀

  • @Wakkyguy
    @Wakkyguy 4 года назад +43

    It would be very helpful if you could make a useMemo() vs useCallback() video demonstrating their practical usage in one sample project.

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

      I have a blog post linked in the description which does a good job of comparing them to each other.

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

      @@WebDevSimplified Yes I have read that. Just wanted to see them being used in a single project.

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

      lt bugs me that useMemo(()=> ()=> [number, number + 1, number + 2]) would be the same as using useCallback

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

      it can be used in search feature just use debounce an pass it to useCallback.

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

    you explain difficult concepts so clear and simple. Web Dev simplified, indeed

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

    I've been having a really bad time looking at the React documention about those hooks. And just when I was wondering about the difference between useMemo and useCallback: Boom!! you read my mind!! Just outstanding explanation!!!

  • @GrigorMinasyan
    @GrigorMinasyan 3 года назад +3

    So helpful! I had an issue where socket connection would get duplicated when toggling dark more

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

    Thanks , I am always impressed how you can explain quite complicated things in a simple way 👍👍

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

    OooF! This is just pure gold. You just helped me out of a hole again Kyle, thank you so much!

  • @Stef-an
    @Stef-an 2 года назад

    These short videos are life-savers for juniors. Thanks a lot!

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

      And mids :p, oh wait, that means that I'm not mid lvl? oh man! :(

    • @saarza9991
      @saarza9991 2 месяца назад

      ​@@COROLOSTO we all are noobie poobies :)

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

    Best tuts on the web - PERIOD. Thanks Kyle!

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

    You are a good tutor. This is a rare talent. Thank you very much!

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

    Mannnn I was actually going to search for a solution to my problem, and then without me even searching, I see this video and I'm like : sure let's check it, just for it be the solution I'm looking for, now I'm off to use that in my code, thank you ^^

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

    That explanation is very, very clear and useful! Thank you!

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

    You and net ninja is a killer combo - thank for the great vids !

  • @vinzbrain
    @vinzbrain 2 года назад +7

    Great video! 2 questions:
    1) wouldn't it not make more sense to pass the generated array to List rather than the function that generates them?
    2) can useCallback be achieved with useMemo that that wraps a function that returns a function?

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

      I like the second question, I wonder the same.

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

    Clear and concise, great video.

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

    Thanks for that video, Kyle! The best and simplest way to understand useCallback!

  • @larcho
    @larcho 11 месяцев назад

    Awesome video. There quite a few videos here in youtube that explains this poorly, thanks for this.

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

    The topic is crystal clear. Thank you man.

  • @VishalSharma-rn7mt
    @VishalSharma-rn7mt 3 года назад +1

    awesome tutorial, when I will have money, I will definitely buy your course brother

  • @rahuldwivedi4758
    @rahuldwivedi4758 8 месяцев назад +1

    Great work. But here’s the issue. The useEffect wouldn’t be called again in your List component as you have mentioned. But whatever inside your return is, will be re-rendered again. Put a console log inside the return block of list component to see. To prevent that you need to wrap the List component with memo, memo(List)

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

    I got this BRO )) THANKS TO YOU!!!
    AFTER 2 YEARS NOTHING CHANGED ABOUT USECALLBACK BRO?

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

    Enjoying your hooks videos. Your video has a function passed into a component. It makes me think I'd really like to see a course or series on solving some of the trickier design problems with React. Specifically, concepts I've caught myself getting tripped up in my thinking with are: How to decide to use props, state or a store/reducer (and when to use context.) Strategies for interacting with APIs. When passing a function to a component makes sense. Testing your components when you're using hooks.

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

    thanks! this solve a major confusion in react. I always wondered why inner functional component resets on parental state update. the answer is useCallback() !

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

    Wow!!! awesome I swear this lesson the real best lesson off all I get in this point and this always you

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

    bro....your explanation is to diff from others and have more details. keep it up.. superb

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

    Amazing explanation. Thank you from Mexico

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

    It was really helpful 🤗🙏 . Thanks alot for sharing. Finally got clarity on the concept.

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

    you helped me get a job at coinbase, ty

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

    great man, you deserve great success

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

    really simple explanation! thanks to you a lot.

  • @thrash_jesus
    @thrash_jesus День назад

    You're a G man love the vids

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

    this one gave me a lot of trouble for some reason despite the other hooks not being too tough. the way i wrapped my brain around it is to remember that useCallback allows us to pass a reference to a function, whereas passing a regular function as a prop causes react to create a new function within the component on each render.
    useMemo allows us to avoid expensive variable calculations, and useCallback allows us to avoid redundant functions being created in memory.
    if I'm wrong PLEASE let me know lol

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

    This is a very clear explanation, thank you very much, keep up the good work

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

    super clear. highly recommend this channel :)

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

    From the docs "useCallback(fn, deps) is equivalent to useMemo(() => fn, deps)", so it is just a shorter way for memorizing functions as I understand it. Anyway, good video!

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

      So the main difference between useMemo and useCallBack is that one returns the value of the function and the other returns the actual function, but what if I use useMemo and return a function as the return value. will it work the same or am I missing something here?
      Like this.
      const functionWithMemo = useMemo(()=>function(){})

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

      @@naveedalirehmani4135 As I understand it, this is equivalent to useCallback, yes.

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

    Very clear explanation. Thanks a lot ! !

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

    Crystal Clear, thank you so much!

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

    Thank you, Kyle. This explanation is incredibly clear and easy to understand.

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

      watch useCallback Hook in Hindi in easy way explained
      ruclips.net/video/Gj68rN0vLSc/видео.html&ab_channel=Front-EndHacks

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

    Great explanation! Thanks a lot!

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

    Beautifully explained, thank you.

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

    very true. You really simplified it.Good Job😌.

  • @thecutedreamkostasp.4449
    @thecutedreamkostasp.4449 2 года назад

    Excellent show case of usecallback! But i wanted to mention that u could avoid usecallback there if u just out the function outside the App Component and just pass the number as argument on it! Then every time App component rerenders the function wouldn't generated again! Big loves for your channel!

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

    Thank you so much for this video

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

    Great video!! can you make a separate based on the difference between useMemo and useCallback, this will really be helpful!

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

    Nice explanation 😊

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

    Amazing work man! thank you!

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

    Desktop in introduction was looking dope! Great video BTW..

  • @rohith8269
    @rohith8269 11 месяцев назад

    Great explanation!

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

    Super genius explanation. Thanks so much.

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

    You are a blessing!

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

    You're brilliant Kyle.

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

    6:19 You can pass parameters using useMemo, from react documentation, the following. useCallback(fn, deps) is equivalent to useMemo((yourParameters) => fn, deps).

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

    Amazing explanation !

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

    Awesome Explanation

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

    really u have simpleified to me

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

    thank you for the video!

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

    very helpful and succinct. Thanks for your videos!

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

    concise and helpful

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

    Thank you! great tutorial

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

    Great explanation (again)!

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

    Thank you, very useful !

  • @csablons
    @csablons 4 года назад +4

    I'm not sure using useCallback avoid to redraw the component in this case. What you show is to avoid go back in the useEffect. It's different.
    If I put a console.log inside the component List return's, I always get the log.

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

    Thanks, for beginner like me, I rarely use useCallback if my editor don't suggest it 😄

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

    Great explanation!!!!! More power to you:)

  • @sreekumarmenon
    @sreekumarmenon 3 года назад +10

    thanks, useCallback "simplified"!

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

    Excellent
    Thanks

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

    awesome!! U rock, thank you so much for this video.

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

    7:00 I believe we may also need UseCallback if we pass it to a component that holds a lot of nested children inside it, even if the creation process is simple.

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

    Great explanation :) Thank you

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

    In my humble opinion, making the comparison between useMemo and useCallback confuses the listener with regards to the concept. By drawing connections to the developer, you won't be teaching the audience to think of concepts so it makes sense to the audience.
    I love your content thought!

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

    what a wonderful example !!!

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

    great explanation! thank you.

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

    Use case: when you pass the a function, created inside a component, as callback into another component ( results in the use case of referential equality, but might not necessarily be clear to everyone)

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

    basically useCAllback is memoized if dependencies are not changing it will memoize and will not execute again as it is not executing again it will not change props and thus the component will not rerender

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

    Congratulations on your engagement :)

    • @Cloud-577
      @Cloud-577 4 года назад

      how do you know?

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

      @@Cloud-577 It was on Twitter

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

    you da best, bro!!! thanks!!!

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

    You're the best teacher! You have a true gift, thank you!

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

    Hey man - love these videos, you seem to have one on every concept. I **think** I can throw you some suggestions to make your audio even crisper, without changing your hardware at all. If you're interested, we can give it a go - then I can maybe ask you some React questions in return, haha.
    Be well, mate!😁

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

    thanks you really help me

  • @Neha-sw6ky
    @Neha-sw6ky 4 года назад +1

    Loveeee from India❤❤❤

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

    Use callback is equivalent to using useMemo with a function that returns a function that needs to run when component rerenders. It just avoids the need to curry the function yourself.

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

    Amazing video

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

    Great video

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

    Tnx very useful

  • @Johnny-rn8fb
    @Johnny-rn8fb 2 года назад

    Thanks

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

    5:32 Callback allows parameter passing

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

    Good explanation of useCallback doesn't ex... oh

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

    Why don't you pass the list itself as parameter to the List component?

  • @Andy-si1pl
    @Andy-si1pl Год назад

    my go to guy

  • @thefanbase
    @thefanbase 3 года назад +19

    Why would you make the useEffect depend on that *function* in the first place? You can just make it depend on the state `number` right? and this problem would be avoided, it just doesn't make sense.

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

      It's an example bro

    • @hierotsu
      @hierotsu 2 года назад +11

      @@ea9849examples should have meaning for this kind of videos, mainly for React.

    • @kirankumar-ki3ci
      @kirankumar-ki3ci Год назад

      Exactly my question

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

      Relax bro it is just an example to show how useCallback work

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

    thanks Kyle :))