Learn useCallback In 8 Minutes

  Рет қаралды 475,951

Web Dev Simplified

Web Dev Simplified

Күн бұрын

Пікірлер: 265
@nanonkay5669
@nanonkay5669 4 жыл бұрын
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 жыл бұрын
Thanks man!
@h2o313
@h2o313 4 жыл бұрын
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 жыл бұрын
Why can't we use useEffect instead of useCallback?
@vijaykumarreddyalavala3713
@vijaykumarreddyalavala3713 3 жыл бұрын
@@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 жыл бұрын
@@vijaykumarreddyalavala3713 Freaking nicely explained
@pawandeore6989
@pawandeore6989 Жыл бұрын
for someone who is confused the main difference between useMemo and useCallback is usMemo cache values and useCallback caches the function itself
@pawandeore6989
@pawandeore6989 7 ай бұрын
@@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.
@oracleking4252
@oracleking4252 6 ай бұрын
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
@tomaszkapalka
@tomaszkapalka 3 жыл бұрын
I am always impressed how you can explain quite complicated things in a simple way! As always...great job and many thanks!
@Shoulon
@Shoulon 4 жыл бұрын
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 жыл бұрын
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
@GrigorMinasyan
@GrigorMinasyan 3 жыл бұрын
So helpful! I had an issue where socket connection would get duplicated when toggling dark more
@angell2341
@angell2341 4 жыл бұрын
Explaining the usecase on why we have to use that is really ausum, I felt ur channel unique
@hamzafaysal909
@hamzafaysal909 4 жыл бұрын
Just watched your useMemo video and I was really confused between these 2 hooks but this video clears everything... Thanks Kyle : )
@marcelotorreblanca9276
@marcelotorreblanca9276 2 жыл бұрын
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!!!
@rahuldwivedi4758
@rahuldwivedi4758 11 ай бұрын
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)
@stevereid636
@stevereid636 3 жыл бұрын
This is awesome. I’ve been wondering about the differences for ages. I feel like Kyle just granted me a super power 😎
@zdargahi
@zdargahi 2 жыл бұрын
you explain difficult concepts so clear and simple. Web Dev simplified, indeed
@Stef-an
@Stef-an 2 жыл бұрын
These short videos are life-savers for juniors. Thanks a lot!
@COROLOSTO
@COROLOSTO Жыл бұрын
And mids :p, oh wait, that means that I'm not mid lvl? oh man! :(
@saarza9991
@saarza9991 5 ай бұрын
​@@COROLOSTO we all are noobie poobies :)
@simmzzzz
@simmzzzz 11 ай бұрын
Best tuts on the web - PERIOD. Thanks Kyle!
@andrewshaban2888
@andrewshaban2888 Жыл бұрын
You are a good tutor. This is a rare talent. Thank you very much!
@vinzbrain
@vinzbrain 3 жыл бұрын
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 жыл бұрын
I like the second question, I wonder the same.
@mohmarroun3189
@mohmarroun3189 Жыл бұрын
Thanks , I am always impressed how you can explain quite complicated things in a simple way 👍👍
@Wakkyguy
@Wakkyguy 4 жыл бұрын
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 жыл бұрын
I have a blog post linked in the description which does a good job of comparing them to each other.
@Wakkyguy
@Wakkyguy 4 жыл бұрын
@@WebDevSimplified Yes I have read that. Just wanted to see them being used in a single project.
@guidoglielmi7992
@guidoglielmi7992 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.
@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() !
@mrnabby4178
@mrnabby4178 Жыл бұрын
The topic is crystal clear. Thank you man.
@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 ^^
@NITESHSINGHNRS
@NITESHSINGHNRS 4 жыл бұрын
bro....your explanation is to diff from others and have more details. keep it up.. superb
@larcho
@larcho Жыл бұрын
Awesome video. There quite a few videos here in youtube that explains this poorly, thanks for this.
@prince5922
@prince5922 2 жыл бұрын
6:19 You can pass parameters using useMemo, from react documentation, the following. useCallback(fn, deps) is equivalent to useMemo((yourParameters) => fn, deps).
@xylvnking
@xylvnking 2 жыл бұрын
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
@markwillis1045
@markwillis1045 4 жыл бұрын
Ha, I’m so glad I found this channel. I’m going to be busy watching these the next few days! 😀
@borisnekezov6620
@borisnekezov6620 2 жыл бұрын
Thanks for that video, Kyle! The best and simplest way to understand useCallback!
@fabiojonathanarifin1
@fabiojonathanarifin1 Ай бұрын
very clear explanation, thankyou!
@simeonieroteev4555
@simeonieroteev4555 3 жыл бұрын
That explanation is very, very clear and useful! Thank you!
@VishalSharma-rn7mt
@VishalSharma-rn7mt 3 жыл бұрын
awesome tutorial, when I will have money, I will definitely buy your course brother
@johnhaupenthal
@johnhaupenthal 4 жыл бұрын
Clear and concise, great video.
@rileykarl4895
@rileykarl4895 2 жыл бұрын
You and net ninja is a killer combo - thank for the great vids !
@developerbuddyavikunj5996
@developerbuddyavikunj5996 2 жыл бұрын
It was really helpful 🤗🙏 . Thanks alot for sharing. Finally got clarity on the concept.
@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!
@logio7663
@logio7663 3 жыл бұрын
Very clear explanation. Thanks a lot ! !
@bek3634
@bek3634 Жыл бұрын
really simple explanation! thanks to you a lot.
@markwillis2336
@markwillis2336 3 жыл бұрын
OooF! This is just pure gold. You just helped me out of a hole again Kyle, thank you so much!
@DediAnanto
@DediAnanto 2 жыл бұрын
Thanks, for beginner like me, I rarely use useCallback if my editor don't suggest it 😄
@thebetoxpro
@thebetoxpro 3 жыл бұрын
Amazing explanation. Thank you from Mexico
@vivarantx
@vivarantx 2 жыл бұрын
great man, you deserve great success
@kose241
@kose241 2 жыл бұрын
you helped me get a job at coinbase, ty
@jaytran247
@jaytran247 4 жыл бұрын
Super genius explanation. Thanks so much.
@StephanHaewss
@StephanHaewss 2 жыл бұрын
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 жыл бұрын
@@naveedalirehmani4135 As I understand it, this is equivalent to useCallback, yes.
@keiferramos8858
@keiferramos8858 2 жыл бұрын
very true. You really simplified it.Good Job😌.
@hoyinli7462
@hoyinli7462 2 жыл бұрын
super clear. highly recommend this channel :)
@johannesperez9548
@johannesperez9548 Жыл бұрын
Crystal Clear, thank you so much!
@sottitron
@sottitron 4 жыл бұрын
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.
@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 kzbin.info/www/bejne/fZuZaaWEZdt_icU&ab_channel=Front-EndHacks
@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)
@tadeuszjiwu255
@tadeuszjiwu255 3 жыл бұрын
This is a very clear explanation, thank you very much, keep up the good work
@cyberwolf9543
@cyberwolf9543 Жыл бұрын
I got this BRO )) THANKS TO YOU!!! AFTER 2 YEARS NOTHING CHANGED ABOUT USECALLBACK BRO?
@HOLONIA4EVER
@HOLONIA4EVER 4 жыл бұрын
Amazing explanation !
@ibrahim_youssef_13.12
@ibrahim_youssef_13.12 2 жыл бұрын
Wow!!! awesome I swear this lesson the real best lesson off all I get in this point and this always you
@mayankvora8116
@mayankvora8116 4 жыл бұрын
Awesome Explanation
@shizasiddiqui1689
@shizasiddiqui1689 3 жыл бұрын
You're brilliant Kyle.
@Karlponken
@Karlponken 2 жыл бұрын
Great explanation! Thanks a lot!
@shivanyachandra4214
@shivanyachandra4214 3 жыл бұрын
Great video!! can you make a separate based on the difference between useMemo and useCallback, this will really be helpful!
@maor44
@maor44 2 жыл бұрын
Amazing work man! thank you!
@iamprasad88
@iamprasad88 11 ай бұрын
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.
@csablons
@csablons 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.
@rahuljawale4461
@rahuljawale4461 Жыл бұрын
Exactly
@fat-man-psycho7647
@fat-man-psycho7647 2 ай бұрын
This comment needs to be up there, The useCallback() here doesn't prevent a re-render of the child component.
@aryanshmahato
@aryanshmahato 4 жыл бұрын
Desktop in introduction was looking dope! Great video BTW..
@ahmadbenchakhtir5787
@ahmadbenchakhtir5787 6 ай бұрын
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.
@shane2023amazon
@shane2023amazon 3 жыл бұрын
concise and helpful
@derekmoore7401
@derekmoore7401 3 жыл бұрын
very helpful and succinct. Thanks for your videos!
@manishkumartripathi2259
@manishkumartripathi2259 Жыл бұрын
Nice explanation 😊
@lakshyaagarwal4044
@lakshyaagarwal4044 3 жыл бұрын
what a wonderful example !!!
@kwaku_2023
@kwaku_2023 2 жыл бұрын
You are a blessing!
@luaneaquino7835
@luaneaquino7835 3 жыл бұрын
Thank you! great tutorial
@jnmldo
@jnmldo 11 ай бұрын
Thank you so much for this video
@lightrao
@lightrao 2 жыл бұрын
Thank you, very useful !
@ameybhatkar7980
@ameybhatkar7980 3 жыл бұрын
I bought your react course but it look simple. If you can make it more comprehensive that will help.
@WebDevSimplified
@WebDevSimplified 3 жыл бұрын
I appreciate the support. If you feel the course is not a good fit for you and you would like a refund please send me an email. I also plan to update the course when React 18 launches officially.
@ironsand
@ironsand 10 ай бұрын
Is there any use of useCallback other than passing the memoized function in a dependency array? This is the only example I ever see.
@ifillup
@ifillup 4 жыл бұрын
Great explanation (again)!
@DanielShamany
@DanielShamany Жыл бұрын
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!
@lukisIVIII
@lukisIVIII 4 жыл бұрын
You're the best teacher! You have a true gift, thank you!
@eshwarravikanti7659
@eshwarravikanti7659 3 жыл бұрын
Great explanation!!!!! More power to you:)
@thrash_jesus
@thrash_jesus 3 ай бұрын
You're a G man love the vids
@iurii7752
@iurii7752 4 жыл бұрын
Great explanation :) Thank you
@plopplippityplopyo
@plopplippityplopyo 2 жыл бұрын
Another thing you would want to use usecall back for is if you are going to debounce something
@Jaylaud
@Jaylaud 3 ай бұрын
So if I want a function to be created once and never changed, I can use useCallback with an empty dependency list? 🤔
@naserpapi8921
@naserpapi8921 Жыл бұрын
Excellent Thanks
@bibahbibah5108
@bibahbibah5108 2 жыл бұрын
really u have simpleified to me
@AriRaouf-kq4le
@AriRaouf-kq4le Жыл бұрын
The getItems function return an Array Then in listItem you use useState to returns an array also which you used in iseeffect to retrun the getItems function which also return an array So it become double array? How je used map directly to items?
@sergiyrudenko905
@sergiyrudenko905 3 жыл бұрын
you da best, bro!!! thanks!!!
@jefersoncosta2621
@jefersoncosta2621 3 жыл бұрын
awesome!! U rock, thank you so much for this video.
@davidhahn7391
@davidhahn7391 4 жыл бұрын
great explanation! thank you.
@theshtig4218
@theshtig4218 Жыл бұрын
The getItems function gets re-created every time the App component runs but wouldn't the same thing happen with the number state? Or state is only created the first time App runs?
@sreekumarmenon
@sreekumarmenon 4 жыл бұрын
thanks, useCallback "simplified"!
@levk4195
@levk4195 4 жыл бұрын
If you really want to understand it, 8 minutes is not enough. Before he released the video, he learned it for a few days. Thats just how it is
@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 is 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(){})
@AnoJlJloH
@AnoJlJloH 3 жыл бұрын
You're the BEST!!!
@nihadyaqublu2359
@nihadyaqublu2359 2 жыл бұрын
thank you for the video!
@Neha-sw6ky
@Neha-sw6ky 4 жыл бұрын
Loveeee from India❤❤❤
@verygood5377
@verygood5377 Жыл бұрын
5:32 Callback allows parameter passing
@maryammohammadi2686
@maryammohammadi2686 8 ай бұрын
why do you use useState to getItems? it will come from parent should just show it not handle the state 🤔
@snarkykat
@snarkykat 4 жыл бұрын
Congratulations on your engagement :)
@Cloud-577
@Cloud-577 4 жыл бұрын
how do you know?
@snarkykat
@snarkykat 4 жыл бұрын
@@Cloud-577 It was on Twitter
@randompointlessness2766
@randompointlessness2766 2 жыл бұрын
is it a good use for useCallback to .sort a list function ?
@DillionMegida
@DillionMegida 2 жыл бұрын
Thanks so much for this video. But there's something I find confusing. The List component is also re-rendered when the state changes, which means it is remounted and a new `useEffect` hook redeclared. So how exactly does this new mounted List component keep track of the previous useEffect dependency state?
@BorisDePooter
@BorisDePooter 2 жыл бұрын
If you want components to only rerender when certain props change you can wrap the export with React.memo(). This makes sure it only rerenders when the props actually change in contrast to the basic functionality that always rerenders all child components when the parent component rerenders. Note that u still need to use a useCalback function when passing a function as a prop since the reference to this function will still change if you are not using a useCallback
@viratpatil
@viratpatil 3 жыл бұрын
So using useCallback with getItems will not stop re-rendering of List Component correct ?
Learn Custom Hooks In 10 Minutes
9:38
Web Dev Simplified
Рет қаралды 256 М.
Learn useMemo In 10 Minutes
10:42
Web Dev Simplified
Рет қаралды 489 М.
ТВОИ РОДИТЕЛИ И ЧЕЛОВЕК ПАУК 😂#shorts
00:59
BATEK_OFFICIAL
Рет қаралды 5 МЛН
How To Choose Mac N Cheese Date Night.. 🧀
00:58
Jojo Sim
Рет қаралды 86 МЛН
Learn React Hooks: useCallback - Simply Explained!
17:15
Cosden Solutions
Рет қаралды 104 М.
Every React Concept Explained in 12 Minutes
11:53
Code Bootcamp
Рет қаралды 799 М.
Top 6 React Hook Mistakes Beginners Make
21:18
Web Dev Simplified
Рет қаралды 580 М.
Learn useReducer In 20 Minutes
20:12
Web Dev Simplified
Рет қаралды 516 М.
Why Signals Are Better Than React Hooks
16:30
Web Dev Simplified
Рет қаралды 488 М.
Front-end web development is changing, quickly
3:43
Fireship
Рет қаралды 1,3 МЛН
How To Handle Permissions Like A Senior Dev
36:39
Web Dev Simplified
Рет қаралды 145 М.
Learn useRef in 11 Minutes
10:20
Web Dev Simplified
Рет қаралды 649 М.