Just wanted to say I'm a 39 yo man who currently enrolled into a school for software engineering. I often refer to your videos, and they have helped me maintain a perfect score so far in school. Thank you so much for these!!!!
@@dangeorge3826 not yet, currently finishing up my portfolio now. Hope to have it done this week. But, I was able to help my friend who I met in this class to land a job. He had no prior coding knowledge. It's very possible. Super excited for him.
@@briandev8 lol, congrats to him and good luck to you, man. I am 26, i am coding frontend for about 6 months and I am afraid that I will not get a job this year 😂
How is it possible for you to explain something in 15 minutes that I didn't understand from hours of watching other videos? You've seriously got a gift for teaching, and I feel like I have a much better comprehension of useState now. Thank you!
:))) imagine being called "edgy" for telling them that they can do it faster by reading. Im 100% sure no beginner was thinking: "This anonymous guy from UA-cam with a stupid Icon made me feel ashamed that I watch videos"
SMAL NOTE: 10:53 if you call function by reference, so "useState(countInitial)", so WITHOUT BRACKETS, the function will be called only once. Greate tutorial, great explanations, great teacher! Keep going!
You've got a phenomenal teaching style, Kyle. I can tell you always put in the time for proper preparation for your videos by how structured and easy to comprehend they are. As always, another excellent video, thanks!
Thank goodness there's actually someone who takes time to explain wtf is going on in code. So many tutorials are just people flying through examples and not explaining or showing how things work at all.
Finally somebody actually explained what the hell the "const [thing, otherthing] = stuff" syntax actually does, instead of saying "it's just some ES6 magic syntax".
@@emgodas My description of it being described as "just some es6 magic syntax" stemmed from the frustration of countless other tutorials going "just write this, you don't need to understand what this syntax means, just write it like this and it'll work" and not explaining it.
Today was one of those days where I needed to learn something new, and instead of searching for hours... First search, first click, and 15 minutes later - learning accomplished. Thank you very much. Great tutorial!
just discovered you by this video (searching for react usestate) - I know nothing about react and little to no js. I'm 5 minutes love your presentation style, narration and examples - I understood everything easily. Thank you
10:57 highlight for running vs referencing any initial function is so nice. Also appreciating the attention to variable de-structuring syntax, way beyond notation purposes, as noticed below.
I couldn't understand this thing for weeks...you did the magic in 15 mins... Man !!! Some people are born to be good teachers ❤️ teaching someone or passing your knowledge to others , is one of the most noble thing to do ❤️
I've been using react for over 4 years and off course am very comfortable with class components. Am currently adding to an existing application and decided to see what all the fuss was with functional components and hooks. Your 15 minutes on the nuance of basic concepts behind setState has been very helpful. Good video.
This is absolutely the best explanation of React Hooks {useState}. I was struggling a lot not getting the correct understanding of this es6 style syntactic sugar.
This was such a good tutorial. It actually explained everything methodically and using simple examples, without treating the viewer like an idiot. I love this channel.
I was sitting and coding and I just thought *DAMN can someone just explain useState to me!?* and so now 15 min later, I have a much better understanding. You'r great!!
This was amazing, getting into react for last part of our boot camp and it goes so fast they don't always go in depth, this made sense, and has helped me a LOT, thank you so much!!
Bro this video is made in Heaven, we needed this. Hooks are kinda confusing e.g. every time a component renders, it happens twice ( console.logs at 10:07 and 10:59). But hooks like useRef, useEffect and useCallback are the one's that confuse me the most
the double console.log happens with class components as well the reason is when u use create-react-app it by default uses strictmode which runs your code twice to debug it to remove go to index.js file and remove react.stricmode enclosing the app component
And I thought spending 15+ mins on just useState was an overkill. It was SOO WORTH IT!! loved the way you explained it all with appropriate examples. Thanks a lot Kyle. ✌️😎👏👏🌹
The way you built up the examples to show how to use hooks for scalar value, functions and objects and when we should use them - absolute gem!! Subscribed
ive been going through tutorial hell for a while now. Ive watched a ton of teachers on youtube. I think you are by far the best and most intelligent coder ive come across. Im a 40 year old man and learning this stuff is not easy, but you definitely make it easier. Thank you Kyle.
Nicely done sir. Taking complex subjects and simplifying them so that a child could understand them is no easy feat. Seriously, people that can do that are the ones that lower barriers and allow new people into areas they might otherwise not venture. They demystify. You truly do have a gift and I very thankful for people like you.
at 10:50 , you can pass the function literal into setState and it will have the same behavior as the anonymous function.. So do UseState(countInitial) instead of UseState(countInitial()).
@@exodion4173 yes you do not have to call it .. when we pass a function to useState like this => useState(() => {}) .. you can see we are only passing a function to useState not calling it
4 is our initial state that we added 3 rows above by saying useState(4)... so our counter starts with an initial value of 4. Every time you increment or decrement the counter, this component gets re-rendered and prevCount just takes the current count value and increments or decrements it... I don't know if this answer was very helpful... but I just posted a video about the same topic, check it out and maybe this will help you to understand it... 😉
Ah! I thought about it some more. When he destructured the useState hook and passed it the value 4, it was assigned as the current state and also passed to the setter function. I think that’s how it works
I think the second function that useState returns, such as setCount, setState etc. can take in a function and apply that function to the current value of the "state" (eg count) that it is bound with. So when saying prevCount => prevCount + 1 , you're just creating an anonymous function inline that takes an argument (prevCount) and increments it. The argument prevCount (or whatever else you rename it) is always passed in the current value of the state it is bound to in the useState call.. try renaming prevCount to xyz and reexecute
I had a hard time to understand this too. Still don't get it fully but I found that setState() is asynchronous and React may batch multiple setState() calls into a single update for performance(src: Reactjs.org). So, prevCount is just a function parameter received and it is the initial state on the first call. setcount(function(prevCount) { return prevCount - 1; }); Without using a function call inside setCount, you actually update the state directly, but with the function call you use a variable(function parameter) which is the returned value minus one and this value(variable) is used inside setCount() to set the state. I was experimenting with the following code and it give the same result. const [count, setCount] = useState(4); const x = count; function decrementCount() { setCount(function(x) { return x - 1; }); setCount(function(x) { return x - 1; }); }
Kyle your teaching style is SUPERB and the way how you take us through every bits and gotchas and explain in the easiest way is remarkable. Love from India.
Not everyone can explain something effectively, but u do it well. Good work. I just started learning React and it is very complex , but ur video helps.
Note to everyone: if you were updating the state using `setTimeOut`, remember closures in JS and know that it will get the state that you pass in at the time of you calling set timeout, as oppose to the current state of the useState hook. If you'd like setTimeout to use the newer state, you can wrap your state in a `useRef` container and it's `.current` property will hold the latest state.
Amazing! I find it strange that half this stuff isn't in the ReactJS docs, or is just really hard to spot, I tried to reference it and can't even find it... Amazing videos, as always!
I'm new to web development, just shifted from working in design to development. This video was really helpful, you really simplified it. Excellent teaching style, subscribed.
Man, I'm really impressed by the way you explain the topic! I came to your tutorial from udemy where the guy explained the very same topic but in a cumbersome way! Thanks a lot!
hey im very amazed by your teaching skills, got interested about your income and searched google and got none, thought of asking to you itself , so I can take it as a career too
You are such an amazing teacher, so clear and so thorough! Wished my teacher was this clear, but I have to ask him so many questions to actually understand what he is explaining. Instead of explaining, he just shows what is done, explaining very little. For example he never explained that const [count, setCount] inside const [count, setCount] = ustState(0) is a destructured array. He also never demonstrated why we use prevState. So when I saw that for the first time I was very confused because I didn't see why that was needed.
beat my head against the wall all day for trying to learn this hook. this summed everything up in such a concise way! so grateful, keep up the amazing work.
Great video. Alot of youtubers just copy content from each other and tell repeating contents, you did amazing job and represent creative content. Well Done. Keep it up
Thank you Todo: Take note of weird usestate behaviour when using previous value of state to set new value. Just use the callback that takes the previous value always. Breaking down objects into different usestate variables instead of having them in one object
Super helpful for me, and I am a senior dev team lead in OO programming (C#, WPF, MvvM) attempting to pivot back into web dev after about 2.5 years away from React. Trying to brush back up on it. Thank you so much for your clear explanation and no frills approach. Great stuff bud
Very very clear. I have searched so much content on this but I still didn't have a very clear understanding on how to use it. You really helped me a lot thanks.
omg THANK YOU for the prevCount example where you showed what happens if you don't use it. I was confused for the longest time what the point of prevState is. this is a godsend
The way you teach is amazing, I am currently in a coding bootcamp and I can say the way you teach is a lot better than how my instructor explains code to us. is much more human comprehensive without the sacrifice of code terminology.
Dude, thanks a ton. Literally no online documentation is this helpful. They all talk in an esoteric way that you can only really get if you are a least fairly introduced to React. Honestly, hardly any intro content is helpful to people like me who really haven't been involved in front-end development -- mostly back-end. With the lack of type safety in JS, a lot of articles will show you these anonymous types, variables, etc., and expect you to know exactly what that looks like. It's hard to follow sometimes when you have to constantly trace steps back on everything so you have the right mental image for context. Doesn't help a ton of articles and examples start flat out in the middle of other things as well. Looking at redux I'll see these basic pseudo code examples, but it never shows the context in which they are using it... like is example code inside a component? What imports do you have? What are these variables you use and don't show the definitions of? My oh my it's frustrating! Anyways, you video was perfect. I'll be coming here first instead of Googling or looking at docs.
Just wanted to say I'm a 39 yo man who currently enrolled into a school for software engineering. I often refer to your videos, and they have helped me maintain a perfect score so far in school. Thank you so much for these!!!!
How is it going, man? Have you found a job?
@@dangeorge3826 not yet, currently finishing up my portfolio now. Hope to have it done this week. But, I was able to help my friend who I met in this class to land a job. He had no prior coding knowledge. It's very possible. Super excited for him.
@@briandev8 and how old is him?
@@dangeorge3826 he is 37
@@briandev8 lol, congrats to him and good luck to you, man. I am 26, i am coding frontend for about 6 months and I am afraid that I will not get a job this year 😂
How is it possible for you to explain something in 15 minutes that I didn't understand from hours of watching other videos? You've seriously got a gift for teaching, and I feel like I have a much better comprehension of useState now. Thank you!
Sure.
148k people needs a 15min video for a 5 min documentation read?
look at the documentation on www.Reactjs.org and make same things
@@george527 How edgy shaming beginners for understanding something better from this video. So cool and edgy wow.
:))) imagine being called "edgy" for telling them that they can do it faster by reading.
Im 100% sure no beginner was thinking: "This anonymous guy from UA-cam with a stupid Icon made me feel ashamed that I watch videos"
my name is kyle and my job is to simplify the web for you so that u can start building your dream projects sooner
.....I love this sentence
SMAL NOTE: 10:53 if you call function by reference, so "useState(countInitial)", so WITHOUT BRACKETS, the function will be called only once. Greate tutorial, great explanations, great teacher! Keep going!
Thanks for the explanation, it's very easy to follow this way. I must admit I laughed at the typo at 5:57 but you recovered nicely
I came here to say this. He kept his poker face. Good job, Kyle!
Hey, who does not want to decrement a c*nt ?
As soon as I saw that, I minimized the video to scroll down and read the comments.
I decremented the screen to look for this comment as soon as I saw the typo..
it happened to me once in a CCNA course when I typed no shit instead of no shut in front of my professor...
You've got a phenomenal teaching style, Kyle. I can tell you always put in the time for proper preparation for your videos by how structured and easy to comprehend they are. As always, another excellent video, thanks!
Thank you! I actually wrote an entire blog article for this video first before recording to help make sure I has covered everything I needed to.
@Jimmy Kristian where is your second account which will confirm it worked?
@@WebDevSimplified sir I like your good keep going but please make vedio on all 10 react hooks
ua-cam.com/users/shortsluwxDqy6NC0
0% nonsense.
100% useful information.
Awesome explanation!
Thank goodness there's actually someone who takes time to explain wtf is going on in code. So many tutorials are just people flying through examples and not explaining or showing how things work at all.
Finally somebody actually explained what the hell the "const [thing, otherthing] = stuff" syntax actually does, instead of saying "it's just some ES6 magic syntax".
Who say's it's just some es6 magic syntax? I've never hear it from anyone here on UA-cam
@@emgodas My description of it being described as "just some es6 magic syntax" stemmed from the frustration of countless other tutorials going "just write this, you don't need to understand what this syntax means, just write it like this and it'll work" and not explaining it.
I love how clearly you explain everything, it really reflects your knowledge on the topic! TYSM!
Today was one of those days where I needed to learn something new, and instead of searching for hours... First search, first click, and 15 minutes later - learning accomplished.
Thank you very much.
Great tutorial!
just discovered you by this video (searching for react usestate) - I know nothing about react and little to no js. I'm 5 minutes love your presentation style, narration and examples - I understood everything easily. Thank you
.... I've just noticed everyone else's comments already pretty much said the same thing before me.
Havn't seen a guy who explains useState better than you. Subscribed.
that was 15 min worth a whole week searching and watching multiple videos on the subjsct. thanks a lot and keep on the road simplifiying stuff...
10:57 highlight for running vs referencing any initial function is so nice. Also appreciating the attention to variable de-structuring syntax, way beyond notation purposes, as noticed below.
Everytime i need to learn something i always check several chanels to find "the guy" but this kid is what he promises. He simplifies the web for us
Oh, man, of all the typos you could have made, you made that one =D Great vid; well presented as always.
Haha i bet his heart dropped after typing that by accident XD
Timestamp?
@@farhanaditya2647 5:57
I couldn't understand this thing for weeks...you did the magic in 15 mins... Man !!!
Some people are born to be good teachers ❤️ teaching someone or passing your knowledge to others , is one of the most noble thing to do ❤️
I've been using react for over 4 years and off course am very comfortable with class components. Am currently adding to an existing application and decided to see what all the fuss was with functional components and hooks. Your 15 minutes on the nuance of basic concepts behind setState has been very helpful. Good video.
This is the clearest, most concise explanation of the useState hook that I have found, HANDS DOWN. Thank you!
KYLE IS THE MAN!
This is absolutely the best explanation of React Hooks {useState}. I was struggling a lot not getting the correct understanding of this es6 style syntactic sugar.
This was such a good tutorial. It actually explained everything methodically and using simple examples, without treating the viewer like an idiot. I love this channel.
I was sitting and coding and I just thought *DAMN can someone just explain useState to me!?* and so now 15 min later, I have a much better understanding. You'r great!!
This was amazing, getting into react for last part of our boot camp and it goes so fast they don't always go in depth, this made sense, and has helped me a LOT, thank you so much!!
what a video previously i have watched 2 hour video which confused me even more but ur video was so good man. thanks alot
I appreciate the explanation of the overlooked things that are usually.. 'Just done this way'
This is actually the best video to understand useState Hook. Everything is crystal clear! Thank you so much!
Bro this video is made in Heaven, we needed this. Hooks are kinda confusing e.g. every time a component renders, it happens twice ( console.logs at 10:07 and 10:59). But hooks like useRef, useEffect and useCallback are the one's that confuse me the most
the double console.log happens with class components as well the reason is when u use create-react-app it by default uses strictmode which runs your code twice to debug it to remove go to index.js file and remove react.stricmode enclosing the app component
@@kiyotaka721 some new I learned, thanks.
I’m in a coding bootcamp right now and you are a godsend! Thank you for your videos. They help so much!
And I thought spending 15+ mins on just useState was an overkill. It was SOO WORTH IT!! loved the way you explained it all with appropriate examples. Thanks a lot Kyle. ✌️😎👏👏🌹
The way you built up the examples to show how to use hooks for scalar value, functions and objects and when we should use them - absolute gem!! Subscribed
Hi Vinodh! Are you a fresher or a working professional? Are you open to job opportunities in web development currently?
This was awesome. I never knew about passing a function to useState to optimize the performance.
I wonder why though. Function in JS is higher-order function, can be used as variable. Why here is different?
ive been going through tutorial hell for a while now. Ive watched a ton of teachers on youtube. I think you are by far the best and most intelligent coder ive come across. Im a 40 year old man and learning this stuff is not easy, but you definitely make it easier. Thank you Kyle.
All the best for your journey. My videos should be pretty helpful for you as well... 😉
Nicely done sir. Taking complex subjects and simplifying them so that a child could understand them is no easy feat. Seriously, people that can do that are the ones that lower barriers and allow new people into areas they might otherwise not venture. They demystify. You truly do have a gift and I very thankful for people like you.
that missed "o" though. Rough buddy. But an amazing video that helped me a lot! Thank you!
The tip you gave on function initialization for use state is phenomenal. I boosted performance drastically in my application 😯
5:56 lol
Great video by the way, thanks a lot!
Man, I don’t think there’s anyone who can explain concepts as simple and eloquent as you. Absolutely love your work!
at 10:50 , you can pass the function literal into setState and it will have the same behavior as the anonymous function.. So do UseState(countInitial) instead of UseState(countInitial()).
Can u explain or refer to the concept on how this work ? Dont we have to call the function to run it ?
@@exodion4173 yes you do not have to call it .. when we pass a function to useState like this => useState(() => {}) .. you can see we are only passing a function to useState not calling it
This is so clear! I had trouble understanding the useState concept from other medias!
@ 7:45 can somebody educate me on the setCount (prevCount => prevCount - 1) ?
its unclear to me how prevCount was assigned value of 4.
4 is our initial state that we added 3 rows above by saying useState(4)... so our counter starts with an initial value of 4.
Every time you increment or decrement the counter, this component gets re-rendered and prevCount just takes the current count value and increments or decrements it...
I don't know if this answer was very helpful... but I just posted a video about the same topic, check it out and maybe this will help you to understand it... 😉
Helped me understand immensely versus the Meta course I am learning from! Thank you!
That was a brilliant explanation, the only thing I don't understand is how does prevState gets the current state values :/
Yes! I am wondering the same thing!
Ah! I thought about it some more. When he destructured the useState hook and passed it the value 4, it was assigned as the current state and also passed to the setter function. I think that’s how it works
I think the second function that useState returns, such as setCount, setState etc. can take in a function and apply that function to the current value of the "state" (eg count) that it is bound with. So when saying prevCount => prevCount + 1 , you're just creating an anonymous function inline that takes an argument (prevCount) and increments it. The argument prevCount (or whatever else you rename it) is always passed in the current value of the state it is bound to in the useState call.. try renaming prevCount to xyz and reexecute
I had a hard time to understand this too. Still don't get it fully but I found that setState() is asynchronous and React may batch multiple setState() calls into a single update for performance(src: Reactjs.org). So, prevCount is just a function parameter received and it is the initial state on the first call.
setcount(function(prevCount) {
return prevCount - 1;
});
Without using a function call inside setCount, you actually update the state directly, but with the function call you use a variable(function parameter) which is the returned value minus one and this value(variable) is used inside setCount() to set the state. I was experimenting with the following code and it give the same result.
const [count, setCount] = useState(4);
const x = count;
function decrementCount() {
setCount(function(x) {
return x - 1;
});
setCount(function(x) {
return x - 1;
});
}
Kyle your teaching style is SUPERB and the way how you take us through every bits and gotchas and explain in the easiest way is remarkable. Love from India.
Hey Sagar! Are you a student or working currently? Would you be interested in exploring job opportunities in web development?
😍 nice!
Please do one on the context API
Thanks! That will be coming for sure.
Your explanation is very intuitive, thanks for this video
You are such a good teacher Kyle. Thank you!
You’re also so handsome 😊
Comprehensive explanation with intuition developed around hooks
Can we have a video about custom hooks? thank you for the effort
You made the useState hook so simple to understand you are really a good teacher. Please keep making more videos, thanks so much, I do appreciate it.
You know its been well explained, if I commented.
I commented.
Not everyone can explain something effectively, but u do it well. Good work. I just started learning React and it is very complex , but ur video helps.
Note to everyone: if you were updating the state using `setTimeOut`, remember closures in JS and know that it will get the state that you pass in at the time of you calling set timeout, as oppose to the current state of the useState hook.
If you'd like setTimeout to use the newer state, you can wrap your state in a `useRef` container and it's `.current` property will hold the latest state.
Great. Can you elaborate?
Could i Ask for help regarding something in react?
I was once stuck at diff btw props and state, you solved it. Now i am stuck at hooks you did it again. Kudos!!
Hi Sourabh! Are you a student or working currently? Would you be interested to explore job opportunities in web development?
everytime you say gotchu, i wanna say bless you lol.
Wow. I was a little confused when I was reading a textbook on useState. But now it's so clear. Thank you so much!
Amazing! I find it strange that half this stuff isn't in the ReactJS docs, or is just really hard to spot, I tried to reference it and can't even find it... Amazing videos, as always!
You are one of the absolute *best* dev tutorial channels out there. Please never change!
decrement what?
God
You’re the best bro
I’m literally grinding my way up to programming with your videos for the past 7 months
5:55 there are no accidents
freudian slip
thanks, brother you really got me it's 2023 two years after this video was released but it's still helpful thanks kyle 🙏
Before watching this video, I thought I understood the react hooks..
Hi Arjun! Are you a student or working currently? Would you be interested to explore job opportunities in web development?
@@shivanigaddagimath6105 No, thank you.
Hey man....u r my fav Reactjs tutor! Now I got to know y we write "...prevState" in setState method. Thanks!
Was sooooo confused until I saw this video. 1000/10 thank you!
As a veteran JS user for YEARS, I needed a crash course in React; your videos have been INCREDIBLY helpful! Thanks for doing this :D
I'm new to web development, just shifted from working in design to development. This video was really helpful, you really simplified it. Excellent teaching style, subscribed.
The coolest teaching style that i have EVER seen!!
Man, I'm really impressed by the way you explain the topic! I came to your tutorial from udemy where the guy explained the very same topic but in a cumbersome way! Thanks a lot!
Thank you a lot bro, you did it much clearer then others. One thing you didn't explain double log
hey im very amazed by your teaching skills, got interested about your income and searched google and got none, thought of asking to you itself , so I can take it as a career too
You are such an amazing teacher, so clear and so thorough! Wished my teacher was this clear, but I have to ask him so many questions to actually understand what he is explaining. Instead of explaining, he just shows what is done, explaining very little. For example he never explained that const [count, setCount] inside const [count, setCount] = ustState(0) is a destructured array. He also never demonstrated why we use prevState. So when I saw that for the first time I was very confused because I didn't see why that was needed.
Man ! you are so gifted you explained it very well.....thanks alot and keep doing the good work.....................God bless you
your way of teaching is amazing 🙂🙂
Amazing! Simple, yet comprehensive explanation!
beat my head against the wall all day for trying to learn this hook. this summed everything up in such a concise way! so grateful, keep up the amazing work.
Wow! This is explanation is both thorough and simple.
Fantastic tutorial you the man Kyle
This young man pays attention to the smallest details, which is why I go to him to find a solution to my problem
Great video. Alot of youtubers just copy content from each other and tell repeating contents, you did amazing job and represent creative content. Well Done. Keep it up
You do ensure to cover the most basic and most important aspects of every hook. Really awesome explanations.
Hey! Are you a student or working currently? Would you be interested in exploring job opportunities in web development?
TY your English is so easy to understand when I listen to you I feel bilingual :)
the most full explanation
Thank you
Todo:
Take note of weird usestate behaviour when using previous value of state to set new value. Just use the callback that takes the previous value always.
Breaking down objects into different usestate variables instead of having them in one object
I've seen many videos trying to explain state() hook and for me and that is the only video I could really understand properly! Thank you very much!!
Best useState() video.
Super helpful for me, and I am a senior dev team lead in OO programming (C#, WPF, MvvM) attempting to pivot back into web dev after about 2.5 years away from React. Trying to brush back up on it. Thank you so much for your clear explanation and no frills approach. Great stuff bud
Very very clear. I have searched so much content on this but I still didn't have a very clear understanding on how to use it. You really helped me a lot thanks.
omg THANK YOU for the prevCount example where you showed what happens if you don't use it. I was confused for the longest time what the point of prevState is. this is a godsend
15mins of pure gold!!!!!! cleared my doubts completely
The way you teach is amazing, I am currently in a coding bootcamp and I can say the way you teach is a lot better than how my instructor explains code to us. is much more human comprehensive without the sacrifice of code terminology.
Your clarity in explaining things is second to none....Great one
Teacher, lots of love from Nepal! There's no words for you.
just love your teaching style, easy to understand , relaxed, focus on what we need.
Kyle. Thank you so much for your content, you have taught me so much.
I also just posted a video about the same topic (in 2023) - maybe this could be interesting for you as well. 😉
THIS IS REALLY REALLY GOOD KYLE. I hardly comment on videos but had to on this one. You are a good really teacher.Keep it up.
Your tutorials are clean, clear and concise. Big fan !
Thank you!
Dude, thanks a ton. Literally no online documentation is this helpful. They all talk in an esoteric way that you can only really get if you are a least fairly introduced to React. Honestly, hardly any intro content is helpful to people like me who really haven't been involved in front-end development -- mostly back-end. With the lack of type safety in JS, a lot of articles will show you these anonymous types, variables, etc., and expect you to know exactly what that looks like. It's hard to follow sometimes when you have to constantly trace steps back on everything so you have the right mental image for context. Doesn't help a ton of articles and examples start flat out in the middle of other things as well. Looking at redux I'll see these basic pseudo code examples, but it never shows the context in which they are using it... like is example code inside a component? What imports do you have? What are these variables you use and don't show the definitions of? My oh my it's frustrating!
Anyways, you video was perfect. I'll be coming here first instead of Googling or looking at docs.
One of the greatest tutorials I have ever seen! Thank you.