Тёмный

6 State Mistakes Every Junior React Developer Makes 

Lama Dev
Подписаться 326 тыс.
Просмотров 268 тыс.
50% 1

Опубликовано:

 

27 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 285   
@lionelsamain2348
@lionelsamain2348 2 года назад
Hey, I just wanted to let you know that I graduated this year. I finally have my Bachelor degree in management developement. And this is (partially) thanks to you ! I followed your Netflix tutorial and it helped me tremendously for one of my last assignments. So you can go to sleep tonight knowing you made someone else's life better. I'm 33 and this bachelor degree is my second one. I decided to study it while working for a job I hated in order to get out of it. It already opened so many opportunities to me and completely changed my professional life and my career perspectives. Thanks a lot, I'll keep following your videos because I learn so much every time.
@Rei-m3g
@Rei-m3g 2 года назад
Woah am 23 and fretting about my whole life. I better find a job quickly....
@slipstream01
@slipstream01 Год назад
hey did the netflix tutorial help learn react or are you alread good with all the basics of reactt? i am going to try to code along with him in that tutorial so i can learn some more do you think its a good idea?
@shahemhaddad2717
@shahemhaddad2717 Год назад
@@Rei-m3g Did u?
@Rei-m3g
@Rei-m3g Год назад
@@shahemhaddad2717 yea got a job this week
@lionelsamain2348
@lionelsamain2348 Год назад
@@slipstream01 I was close to nowhere with React when I followed this. It's a lot to process though so maybe you should do a few tiny exercises to understand the very basics, then start with this. But whatever you do he explains everything he does so you'll be able to follow. But you might struggle to understand what you do. And if you don't understand, well you won't remember.
@ferdinandeke9590
@ferdinandeke9590 2 года назад
And also, it would be lovely if we start using typescript in both our nodejs and react builds, that also will cut down a lot of these kind of errors. i don't know why no matter how much of tutorials i watch out there, i always still wait for you to implement such stacks before i really feel comfortable with them, cos your explanations sink so well in my brains at just a glance
@John-mj1kk
@John-mj1kk 2 года назад
Not using TypeScript is just asking for trouble and endless nights.
@operupal
@operupal 2 года назад
Hello Lama, make please a video about useMemo, useCallback, useReducer)))
@youusef101
@youusef101 2 года назад
you forgot a "please" in there
@operupal
@operupal 2 года назад
@@youusef101 corrected)
@youusef101
@youusef101 2 года назад
@@operupal thank you
@terjeoseberg990
@terjeoseberg990 Год назад
@@operupal, The “please” should be before “make”.
@writegoodcode
@writegoodcode 2 года назад
for the last one, you could wrap the find one in usememo and pass the dependency as id, to prevent calculating it again and again when you have a lot of states.
@alecssalecs8370
@alecssalecs8370 2 года назад
Yes please ! Explain all the hooks, everybody needs a refresh and you are very good at explaining.
@jeffwang8660
@jeffwang8660 2 года назад
It is amazing. I saw another RU-vidr recommended to use useState individually for each state, but I feel your suggestion of using them as an object is much better. I am interested in useReducer. Could you talk about it as well. Thanks!
@mariusj8542
@mariusj8542 2 года назад
Spot on! I feel like a fool for not understanding that we could define the whole model/object in the initial useState,I have used the standard && every time I use map.
@feriduncanselen9047
@feriduncanselen9047 2 года назад
Hey Lama, I am going to start working tomorrow at my first software developer job. Thanks to your portfolio videos and other various videos I feel really confident for tomorrow. Thank you for uploading videos like this you are a life saver!
@dr.science9609
@dr.science9609 2 года назад
You are my teacher ❤️ if I reach success definitely I will mention you in all my success note And you will really present in my success note
@farid.dev1
@farid.dev1 2 года назад
Safak you are the best! Thank you! Please make a Full Stack app with TypeScript.
@Etubom
@Etubom Год назад
An absolute gem of an explainer video.Can't seem to find it in your github 2022 repo.
@damanpreetsingh8549
@damanpreetsingh8549 2 года назад
I love this you should make more videos like this
@bhosadraju5750
@bhosadraju5750 2 года назад
Please make video on useReducer ...you are the greatest teacher i came across in my learning till now
@tanmayjain5821
@tanmayjain5821 2 года назад
I faced same issue yesterday and got its solution today while casually watching this video.
@figgsboson
@figgsboson 2 года назад
hey, thank you so much for all your vids, especially on React hooks. I like that you make it simple to understand while maintaining content and the rationale behind it. Plus your voice and the way you speak is comforting haha, it helps with the stress of complex topics like this. thank you!
@anshulsaxena3513
@anshulsaxena3513 Год назад
yes definitely, please make a lecture on usereducer hook..... Thank you for this great tutorial sir, its kind one of the best and amazing
@Corntrop
@Corntrop 2 года назад
Wow. I've been developing apps for months and I realized I didn't know 4 of them lol. Thanks for making us better developers. Please share other hooks too.
@sarcasticdna
@sarcasticdna 2 года назад
++
@georgescuradu2275
@georgescuradu2275 2 года назад
I’d love to watch a useReducer and context API tutorial from u. I watched the Redux one, but I personally believe context API is easier to understand.
@MathaGaram
@MathaGaram 2 года назад
What a refined explanation!!! .This guy knows the core issues that juniors unknowingly do.
@rafayzia4180
@rafayzia4180 2 года назад
Thank you for all this lama :) I learnt alot from you in the past year 🥳
@blackstonejimmy
@blackstonejimmy 2 года назад
I'd love a more in-depth look at the useState -> useReducer example you showed - this hook always confuses me (the docs say it should be obvious if I'm familiar with Redux... however I am not familiar with Redux). Same with useMemo and some of the more obscure hooks actually - but I might just be getting greedy asking for them... fantastic video either way!
@iamstickfigure
@iamstickfigure Год назад
Nice. I didn't now about the function version of setStateVar. Also, you may have left this out to avoid confusing people, but I'd recommend a "useMemo" on line 12 of the last bit of code in the video. Running a "find" call on every render is maybe not great. Not terrible for an array of 3, but "useMemo" would be a good practice for things like that. Or you could also use a Map for an id lookup of the product.
@cchelseacxx
@cchelseacxx Год назад
👆Send a direct message for help 🆙 ⬆️ .❤
@cesarfranciscobueno435
@cesarfranciscobueno435 2 года назад
Thank you so much, i'm writting a code yesterday e thinking about how to write my code in a better way. There was a lot of States hahaha, so now today youtube show me your video and was what i need. You got a new subscribe.
@1306dk
@1306dk 2 года назад
Great content as always. Ive been using your approach to handle forms ever since your last video about handling forms 👍
@zakidzz
@zakidzz 2 года назад
where is that vedio of forms can you please put the link here?
@1306dk
@1306dk 2 года назад
@@zakidzz ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-tIdNeoHniEY.html this one
@grijjly6091
@grijjly6091 2 года назад
Handle form onSubmit event. It does not render on every input, handle once, if form value affect another form value, only create for them
@fizikodasi
@fizikodasi 2 года назад
Hazırlamış olduğunuz videolardan çok faydalanıyorum. Teşekkür ederim. Reducer konusunda yapacağınınız videoyu sabırla bekliyorum.
@akuntumbal3222
@akuntumbal3222 2 года назад
Please make a video about advance rest api using nodejs (express.js & mongodb (only rest api). Thanks a lot Lama Dev Edited: Like maximilian course
@ldblogs4uofficial1849
@ldblogs4uofficial1849 2 года назад
Please create this type of video again this really helps Reducer context react toolkits And all the unable to understand hooks Thank you sir
@raphaeljcm
@raphaeljcm 2 года назад
I've just found your channel, a lot of nice tips here. Thanks!
@rohittewari6902
@rohittewari6902 Год назад
Best video to understand useState and use it in the right way♥
@jotasenator
@jotasenator 2 года назад
this is gold, thanks for your time doing this video, and thinking about the proper examples, i will share this on my linkedin. Wish you the best. thank you once more
@morphine496
@morphine496 2 года назад
I'd love to see useMemo and useReducer sometime, thanks for everything, you really help us a lot.
@norbertpascu6168
@norbertpascu6168 2 года назад
Good video bro, good reminder for people going fast!
@mikhailvasilev5798
@mikhailvasilev5798 2 года назад
In the 4 part of your video, you would add the changeUser handler once on the form tag.
@abdullahbelkaid1684
@abdullahbelkaid1684 2 года назад
Woowwww i just started learning react last week and you gave me a bunch of informations with this video, thank you so much 💗💗
@SonAyoD
@SonAyoD 2 года назад
Make a functional and practical use reducer video please 🙏🏾
@angelopavilando5967
@angelopavilando5967 Год назад
yo just saying. keep it up. learning new things from you always. 💓
@andgoedu
@andgoedu 2 года назад
Dude thanks alot i literally ran into this problem on back4app , and this enabled me to assign multiple properties seamlessly and organized
@andgoedu
@andgoedu 2 года назад
can i mention you in my tutorial as a reference ? for a better method than mine i am doing a typescript tutorial and this helped me out alot
@anilkumawat5241
@anilkumawat5241 Год назад
plz make video on UseMemo and useCallback
@mayanksinghal5913
@mayanksinghal5913 2 года назад
Loved it brother, learning a lot ... Keep it up for us
@oleksandrvoichyshyn7486
@oleksandrvoichyshyn7486 2 года назад
This is amazing, refresh memory, and remind what was forgotten. I would watch video about another hooks, and that hooks (noob, pro)
@robertogonzalezz_
@robertogonzalezz_ 2 года назад
Thank you for showing us the most common errors, you are very useful for us. ❤
@sajjadkazemi
@sajjadkazemi 2 года назад
Your examples are the best way to explain 👍🏻
@okanozturk8604
@okanozturk8604 8 месяцев назад
Güzel açıklayıcı bir video olmuş hemşerim.Eline sağlık.
@MassHypnosis805
@MassHypnosis805 2 года назад
Please do a reducer tutorial. This video was extremely helpful.
@wind50321
@wind50321 2 года назад
At 14:23, you are not creating a new product in handleChoose(). You find the product in the array and save the object in selectedProduct. In increment(), you create a new array with all the products (map), and you replace the product with a new object with updated quantity. But selectedProduct is still the old object.
@НатальяСемешенко-т4х
Thanks! It's great lesson! Yes, I'd like to see a useReducer :) I don't understand it...
@omersorhun4116
@omersorhun4116 2 года назад
You are great :) Çok iyi iş çıkartmışsın abim.
@uu-jq4nc
@uu-jq4nc 2 года назад
Well done Sir, an excellent example well executed. Thank you.
@wendy_hassan
@wendy_hassan 2 года назад
I would appreciate a useReducer video
@dclxviclan
@dclxviclan 2 года назад
Peoples, who teaching other peoples coding for free - THIS SAINTS HUMANS 😇, Thanks for all u tutorials🤚👍
@MikdanJey
@MikdanJey 2 года назад
Great work, learning lot
@aamiramin6112
@aamiramin6112 2 года назад
Amazing very informative. Thanks for sharing
@heguer87
@heguer87 2 года назад
Amazing stuff. Thank you Lama!!!
@peacecoder
@peacecoder 2 года назад
We will more happy to see more such videos about react hooks and it's perfect use cases..❤️
@hassamulhaq7762
@hassamulhaq7762 2 года назад
Last example is helpful. Use id instead of updating object or take action on whole object.
@Andrew_Essam
@Andrew_Essam 2 года назад
thank u so much that was super helpful and informative
@jesustzinon
@jesustzinon 2 года назад
Please do more videos about all hooks, like the useReducer!
@emanuelameh5722
@emanuelameh5722 2 года назад
Thanks Lama for this insightful video. Can you please do a video of how to use useEffect hook properly?
@sldentertainments9842
@sldentertainments9842 Год назад
Please make video on useReducer and redux, useCallback and useMemo
@leqiooleon28
@leqiooleon28 2 года назад
which color theme are you using in vs code?
@hassaanshah9819
@hassaanshah9819 2 года назад
Nice tutorial. Thank you
@RAGHI.ABDESSAMAD
@RAGHI.ABDESSAMAD 2 года назад
That"s cool and very good teaching content lama, please can you make a tuto about react with typescript and redux , and if it's possible we want to jump into mobile device using native !!!
@4BeerLife
@4BeerLife Год назад
Please continue!
@Weagle1337
@Weagle1337 2 года назад
12:46, yes please Sir Lama
@alisleem1626
@alisleem1626 2 года назад
please make a video about useReducer with context api , thanks alot
@peacecoder
@peacecoder 2 года назад
Please make such videos on Advanced React Topics ..😎
@stefanhupp7945
@stefanhupp7945 Год назад
Really nice videos. Thanks 🤗
@keymaker1985
@keymaker1985 2 года назад
Please create the reducer video in complex object.
@farjallahhaythem5675
@farjallahhaythem5675 2 года назад
if you can do a tutorial abt formik and how to use it with complexe form like u just did tags and all that stuf or just native with simpl form and input and thank uu for ur consideration
@manojtewari3814
@manojtewari3814 2 года назад
Sir,please make tutorial on useReducer also..
@nick4bizz42
@nick4bizz42 2 года назад
can you make a react course with two dashboards, Frontend and Dashboard?
@mayanksinghal5913
@mayanksinghal5913 2 года назад
Please make videos on other hooks also, and one more thing, can you make video on how to make a custom useEffect hook, so that if we have eslint allowed, we don't have to disable it for the dependency checks again n again, we can do that at one place i.e. our custom useEffect hook
@abubakrjuraev1816
@abubakrjuraev1816 Год назад
Use Callback video please
@micaeldie8584
@micaeldie8584 2 года назад
Great tutorial so precise, learn a lot if you can do some for useReducer it will be great. Much love from Côte d'ivoire 🇨🇮
@tonyohagan1195
@tonyohagan1195 2 года назад
And this is why I code in Vue. Vue's ref() state management eliminate these bugs and remove the confusion of using two functions per variable.
@drewstifler1440
@drewstifler1440 2 года назад
Pls do the 'useState vs useReducer' in form.
@markkevinsoriano1562
@markkevinsoriano1562 2 года назад
Redux and React hooks for the next? And thank you for posting such wonderful video tutorials much love from the PH
@a.j.javier8119
@a.j.javier8119 2 года назад
Very good video, sir. Keep it up!
@marimuthur9456
@marimuthur9456 Год назад
Your really awesome 😎 thank you so much ☺️👌🏼👌🏼👌🏼
@alinesouza9297
@alinesouza9297 2 года назад
Great tips! Thank you
@razzaqmohammedali4653
@razzaqmohammedali4653 2 года назад
Lama plz do a banking mern stack with deployment AWS S3
@razmiqayelyan1497
@razmiqayelyan1497 2 года назад
Thanks 🙏 very useful
@kishoreandra
@kishoreandra 2 года назад
Hey lama, great video as always 🙏... Can you show the useReducer e.g. that you have advised with form e.g. in video please... Thank you
@synt-x6458
@synt-x6458 2 года назад
Great tutorial. Would be great if you can do the same for the other hooks
@andrewborys4599
@andrewborys4599 2 года назад
Thanks, it’s cool video, you are explaining difficult things by simple words. As you said, I’m waiting for redux, maybe redux toolkit or redux thunk… You great 👍🏼
@compass4048
@compass4048 2 года назад
😮oh thanks you , Can useState work with attributes on mouse over and on mouse out?
@nick4bizz42
@nick4bizz42 2 года назад
Great insight
@Apofisbg
@Apofisbg 2 года назад
Usefull Will be much better to explain how objects and arrays are modified in JavaScript In this way some juniors can miss understoand that this is specially for react Anyway a good video for the rest of my lunch break 😃
@mdtowhidulislam5260
@mdtowhidulislam5260 2 года назад
please deep drive into useReducer() hook... I will love to know how you use, and when you use...it will be very helpful for beginners just like me... Special thanks in advance... ❤
@JoffeDall
@JoffeDall 2 года назад
Please make this for the other hooks aswell, would be very useful
@chichebedarlington4360
@chichebedarlington4360 2 года назад
Please provide a lecture on useMemo and useCallback
@ericsantoso1357
@ericsantoso1357 2 года назад
hi, can you explain more deeper about how to handle complex input (section 5 : useState vs useReducer) and how to do another actions after category (select) changed if we used useReducer
@MusicsFree
@MusicsFree Год назад
Very very Helpful 🙂 👍
@viniciusm.m.7822
@viniciusm.m.7822 2 года назад
Thanks a lot, bro!!!!! Deus abençoe você!!!
@uletin8460
@uletin8460 Год назад
Great explanation. Hello, can i get this code repository (Github) ? Thanks.
@policeislam2846
@policeislam2846 2 года назад
Please upload video about e-commerce with firebase
@paoloose
@paoloose 2 года назад
Nice content, what is the name of the font and vsc theme?
@Sch0LarY
@Sch0LarY Год назад
Thank you very much!!!
@dravidjones8447
@dravidjones8447 Год назад
Thank you!
Далее
Learn React useReducer Hook with Examples
14:19
Просмотров 176 тыс.
Самая сложная маска…
00:32
Просмотров 1,1 млн
Goodbye, useEffect - David Khourshid
29:59
Просмотров 500 тыс.
OpenAI’s New ChatGPT: 7 Incredible Capabilities!
6:27
Top 6 React Hook Mistakes Beginners Make
21:18
Просмотров 573 тыс.
CSS Tips And Tricks 2 | I Wish Somebody Told Me Before
12:36
CSS Tips And Tricks I Wish I Knew Before
12:12
Просмотров 480 тыс.
Самая сложная маска…
00:32
Просмотров 1,1 млн