This guy is talented. Patreon here I come. There is so much bad stuff out there. when someone comes along that is this good...I feel like I need to support them so we don’t lose them.
Hi Techsith, Thanks for nice simple way of explaining the hooks concept. In hooks in order to change the state of particular input element you have used arrow function to bind the event handler. Binding the event handler on the html elements will lead to creation of the function object on every render. It is the not the best practice which react recommends.
Hey Techsith. Many thanks for your effort to make those lectures possible to understand more easy. Difficult stuff! It reminds me of my first walking steps with Angular. React is more fun, due to the easier learning curve. I appreciate.
Best React Tutorial on youtube! Please make a video on the deprecated component lifecycles and to be removed in React 17 ie. "componentWillMount", "componentWillUpdate", "componentWillReceiveProps" and new ones "getDerivedStateFromProps" and "getSnapshotBeforeUpdate" .
classes were invented for object orients programming, JavaScript follows more functional programming paradigm, JavaScript has classes but they are not real classes, its just make it looks like classes. JavaScript you want to do composition and not inheritance. that is why react decided to go hooks way which allows you to o composition . composition means creating object with multiple things rather than following strict inheritance which we know doesnt work well.
lol. it actually is replacing class based components. I have project where i am not using classes at all . What they are saying is that if you have used classes , we will support you if you upgrade to the latest version . Basically, they wont deprecate classes anytime soon. but eventually classes are going to go.
Hooks look dope. I thought it was weird that something like react was so bound up with 'classes' since Javascript doesn't actually have classes. Can't wait for it to crystallise and become the standard way of doing things.
Dear Sir, Your tutorial is very good to understand javascript and other things. but i don't think that react hook is the replacement of class. If so then how can we bind the methods in constructor? suppose its required to bind the method to the constructor. Please i need some information on this Thank you very much for the great explanation on React Hook its really helps.
If you use hooks you dont need to use classes and if no class means no constructor. Its more functional way of doing things. as you notice I removed the class from the example
wait ( I have a question , can you explain me what's the difference between input.value and input.target.value?), now i start learning react hooks from this playlist. thank you for these video's, you help me a lot.
you mean event.target.value , when you have an event on an element like input, you can access the value that you filled in by passing the event property and getting event.target.value from it.
Nice and clean introduction on Hooks. Please try to create a series on the complete guide on hooks.
This guy is talented. Patreon here I come. There is so much bad stuff out there. when someone comes along that is this good...I feel like I need to support them so we don’t lose them.
Hi Techsith,
Thanks for nice simple way of explaining the hooks concept.
In hooks in order to change the state of particular input element you have used arrow function to bind the event handler.
Binding the event handler on the html elements will lead to creation of the function object on every render. It is the not the best practice which react recommends.
Awesome intro to hooks! They've sounded like this mythical thing for a while so I'm glad to have a video to break hooks down
i had a doubt . I asked him. He replied. He is awesome
Thanks for the compliment :)
your channel has the best tutorials on javascript and react. hope you cross 100k subs soon!! :)
Thanks for the nice wish. I hope 100k subs come soon.
@@Techsithtube i think you should create real life vanilla javascript projects, it attracts lot of beginners and you can do same for react
Hey Techsith. Many thanks for your effort to make those lectures possible to understand more easy. Difficult stuff! It reminds me of my first walking steps with Angular. React is more fun, due to the easier learning curve. I appreciate.
Nice video this is the place where we can learn and master in front end technologies. Thanks a lot sith sir
thanks mandapati :)
I love your teachings..you have a firm grip on what you teach
Thank you a lot for simple, atomic and transparent example!
Great videos by techsith. Five star.
as usual best tutorial 👌
Best React Tutorial on youtube!
Please make a video on the deprecated component lifecycles and to be removed in React 17 ie. "componentWillMount", "componentWillUpdate", "componentWillReceiveProps" and new ones "getDerivedStateFromProps" and "getSnapshotBeforeUpdate" .
Yes I need to make a new one. Thanks for the reminder. :)
Nice introduction to Hooks😀
Thanks for the nice comment:)
Dude, thank you!
wish you a great day
Have a great day mike , Thanks for watching!
My favourite channel on YT!
This is just awsome ! This made my react knowledge milestone part!
Wow, looks like a new era of React is comming!
Its seems so.
Im on board for a series! Seems like this type of component will became main pretty soon.
I hate it for now tbh :)
Yes this is the future on react. there is no turning back . So a must learn. will keep making further videos for this series.
awesome! look forward to .other hook vids!
I am working on next videos. thanks for watching!
Thanks a lot! Would be really cool, if You will do next lessons - with lifecycle hooks and Redux integration. And again - thanks for Your work!
Nicely Explained ... very nice..
I like those emoji you put in every videos!
Best explanation kept it up
Great content as usually
Why hooks are made to replace classes ? What problem does it solve ?I went say some of the blogs but they are explaining it in a very complex way :(
classes were invented for object orients programming, JavaScript follows more functional programming paradigm, JavaScript has classes but they are not real classes, its just make it looks like classes. JavaScript you want to do composition and not inheritance. that is why react decided to go hooks way which allows you to o composition . composition means creating object with multiple things rather than following strict inheritance which we know doesnt work well.
It's easier to use redux with hooks or with components? I mean I'm still confused by redux, so this makes it easier or more confusing?
Awesome Intro. Just a correction. React strongly says that Hooks are not here to replace class based components.
lol. it actually is replacing class based components. I have project where i am not using classes at all . What they are saying is that if you have used classes , we will support you if you upgrade to the latest version . Basically, they wont deprecate classes anytime soon. but eventually classes are going to go.
Sir Why didn't you made vdo on useCallback hook , I want to learn it from you .
Great vid! What indent highlighter do you use?
Love the channel!!!!! Keep it up please!!!!!
Nice one @ techsith...
Awesome explation,
Can you please guide me where to go next?
Hooks look dope. I thought it was weird that something like react was so bound up with 'classes' since Javascript doesn't actually have classes. Can't wait for it to crystallise and become the standard way of doing things.
I am hoping that React would release a stable version on hooks soon.
Dear Sir,
Your tutorial is very good to understand javascript and other things.
but i don't think that react hook is the replacement of class. If so then how can we bind the methods in constructor? suppose its required to bind the method to the constructor. Please i need some information on this
Thank you very much for the great explanation on React Hook its really helps.
If you use hooks you dont need to use classes and if no class means no constructor. Its more functional way of doing things. as you notice I removed the class from the example
Should we learn react hooks without prior knowledge of class-based component?
Thank you :)
Thanks for watching Usman
can you provide useReducer tutorial
wait ( I have a question , can you explain me what's the difference between input.value and input.target.value?), now i start learning react hooks from this playlist. thank you for these video's, you help me a lot.
you mean event.target.value , when you have an event on an element like input, you can access the value that you filled in by passing the event property and getting event.target.value from it.
Why people always mention about Redux when talking about React? What is the relationship?
thank you so much
If possible can you make video on axios
Yes I can. Also learn fetch as well
@@Techsithtube i can if you want than reply me on sunny.kr.hr@gmail.com
Please Create a video on react SSR
Please make a video on 'how to find complexity of a program'?
You mean the big 'O' complexity?
small comment ? No, HUGE COMMENT :D
Small or huge I appreciate your comments. :)
Such ugly kludges are the future? React is doomed then.
I hate this syntax. I like classes. GRRRRRR