Hope you found this video helpful! What topic would you like to learn next? Drop it in the comments below and I might make a video about it! Also, visit reactsquad.io/ now and hire your next senior React developer today!
I'd love to see how you'd create a data table using onLayout to dynamically adjust the widths so that each column is the same. I had to use useState, useRef, and more.The performance is terrible lol and im sure it can be done better. Also AMAZING video, great explanation!!
A video about react re-rendering. How and when react re-renders component (include redux cases as well). what are good and bad practices to prevent unnecesary re-renderings.
Wow, i have been watching react videos three years now, and this is the first time someone explain how things actually work in the right terms and words, I learned a lot of things from this video other than useCallback and useMemo (will watch the video few times just to memorize everything). please please always be like that, we don't need other youtuber who only reads obvious examples.
Thank you very much! Stay tuned for a future video about higher-order components, which breaks them down in detail. And if you have any topic that interests you, kindly let me know 🙏
I hope you can do one on callback functions. I have hard figuring when I should use them and what I'm really doing with them. And Another one with currying. You're filter with currying is great and I'd like to know them better as well
Will gladly do one on currying. Could you please clarify what you mean with callback functions? You mean in the context of React? Or also on the server?
please talk more about react in that deep way, can be anything, but i have especially interest in how it works under the hood, fiber, reconciliation algorithm and so on
Hope you found this video helpful!
What topic would you like to learn next? Drop it in the comments below and I might make a video about it!
Also, visit reactsquad.io/ now and hire your next senior React developer today!
I'd love to see how you'd create a data table using onLayout to dynamically adjust the widths so that each column is the same.
I had to use useState, useRef, and more.The performance is terrible lol and im sure it can be done better.
Also AMAZING video, great explanation!!
A video about react re-rendering. How and when react re-renders component (include redux cases as well). what are good and bad practices to prevent unnecesary re-renderings.
@@ShivamSharmabtp Very good suggestion!
@@coofzilla Datatables in general could be a good topic!
@@JanHesters yes, please more content. it's so hard finding high quality content these days.
Wow, i have been watching react videos three years now, and this is the first time someone explain how things actually work in the right terms and words, I learned a lot of things from this video other than useCallback and useMemo (will watch the video few times just to memorize everything).
please please always be like that, we don't need other youtuber who only reads obvious examples.
Thank you very much!
Stay tuned for a future video about higher-order components, which breaks them down in detail.
And if you have any topic that interests you, kindly let me know 🙏
wow ..Best explanation ..
Thanks so much!
Keep it up bro.
Thanks!
I hope you can do one on callback functions. I have hard figuring when I should use them and what I'm really doing with them. And Another one with currying. You're filter with currying is great and I'd like to know them better as well
Will gladly do one on currying.
Could you please clarify what you mean with callback functions? You mean in the context of React? Or also on the server?
@@JanHesters what's the purpose, when should i use them, why would i use them?
@@kaicooper9421 Got it! Thank you.
Hi 👋
I have released a video answering your questions about functional programming here: th-cam.com/video/xw5SJZnTWp4/w-d-xo.html
@@JanHesters Thank you, I'll will most def and try to use it practically!
pure gold.
Thank you!
Great Video thx keep it up!
Will do, thank you!
I want more! Subscribed!
Thank you!
More to come!
Great video! Thanks!
Glad you liked it!
not to be disrespectful but bro, your head takes up so much space in my screen 😂 😂 Thanks for the content though. Best explanation
Insert big brain meme 😄
Thanks for the compliment!
helpful!
Glad it was helpful!
cool content
Thank you!
please talk more about react in that deep way, can be anything, but i have especially interest in how it works under the hood, fiber, reconciliation algorithm and so on
More advanced React videos are coming soon!
Great content but the variable names are a bit confusing, try to use different names so that it's easy for us to distinguish between them.
Very good feedback and absolutely true - thank you!
Next videos will use clear names.
what is this in fn.apply(this,args) from where this come?
This is just a fancy way to call a function that preserves the "this" context.
Here is a more simple way to write it:
const result = fn(...args);