3 Beginner React Mistakes That Can Ruin Your App

  Рет қаралды 107,332

Web Dev Simplified

Web Dev Simplified

Күн бұрын

Пікірлер: 215
@LePhenixGD
@LePhenixGD Жыл бұрын
Mistake #3 is one I actually make very often, I spend hours debugging before realizing my mistake
@omega.developer
@omega.developer Жыл бұрын
Me also. But now I won't forget this. Really helpful video 😊
@ferdiebeer
@ferdiebeer Жыл бұрын
3rd mistake was one of the mysteries I had encountered during React development. I dont think I've read about setState function versions anywhere on the documentation. Thank you for clearing that up!
@ViktorKarpov-o8h
@ViktorKarpov-o8h 7 күн бұрын
There is no mistery. Compenent rerenders id state changes. React considers state changed if Object.is(oldState, newState) is false. Thats it. If u compare array with the same array, of course Object.is will be true and there will be no rerender
@AndrewLapteff
@AndrewLapteff Жыл бұрын
I am Slavic, but I have not yet found the best tutors on SLAVIC KZbin. Thank you, Kyle, for such a clear accent!
@VondiaLC
@VondiaLC Жыл бұрын
Just gonna leave this here again: You're awesome man, you explain stuff so well and really know how to.. well simplify it(its all in the name haha). Keep doing what you're doing man no matter how far I get as a developer myself I'll always have time to watch one of your videos 🤩
@BsiennKhan
@BsiennKhan Жыл бұрын
Mistake #3, one of THE Best explanation on this topic. The best thing about the explanation is not a defination rather a practical demonstration of a real -world "actual real-world" scenario. Not a dummy "if a else b something somethig....". Amazing video.
@jc13OM
@jc13OM Жыл бұрын
A big thank you for the second error, that is not very well explained in the doc (even in the pitfall section). I was just trying to figure out the "Preserving and Resetting State" first challenge that use the && operator to avoid to reset a state (due to its change of location) but didn't understand why the left side returns anything. Now it's clear, thank you !
@jasonlough6640
@jasonlough6640 Жыл бұрын
Knew all of these, good explanations. Another thing that trips up people that you briefly touched (but didnt explain) was: where does that e come from in that event handler? This is an interesting one because it seems to just be injected magically, and many libraries use that same technique. Amazing work though, wish I could have this level of tutorial 20 years ago lol.
Жыл бұрын
Example 2: use the !! to cast the value of array length to a boolean. E.g: !!array.length
@dancarter5595
@dancarter5595 Жыл бұрын
Is the correct answer
@moritz_p
@moritz_p Жыл бұрын
While this does work the solution he showed is much more clear and readable. With just a few more characters you can write out exactly what you want to check for instead of making the reader think around corners. No one cares about saving a few bytes or key strokes if you make the code more readable.
Жыл бұрын
@@moritz_p I cannot see how casting is less readable since we use negation expressions (!) in daily bases. But anyway, there are lots of ways to achieve the same thing and I just showed one. Regarding "saving few bytes" if you are always working in hobby projects and copying / pasting tutorials from internet you are good to go.
Жыл бұрын
Hi@@dancarter5595 . There is no right or wrong. Only different approaches. You can stick with the one is more natural for you. 😊
@DavidsInferno
@DavidsInferno Жыл бұрын
For the second mistake, instead of writting: arr.length !==0 && You can add double exclamation points before the arr.length to cast is as bool, which would look like this: !!arr.length && Keeps the code nice, clean and easy to read. I use this often for empty string and empty arrays
@decentrob8126
@decentrob8126 Жыл бұрын
Didn't see this before my comment, but yes I do this to. Or Boolean(arr.length) for readability
@the_kreatives
@the_kreatives Жыл бұрын
@@decentrob8126 Or we can also use ternary operator like arr.length ? : null
@decentrob8126
@decentrob8126 Жыл бұрын
@@the_kreatives technically yes, but in this case no, since its not "either or"
@monome9992
@monome9992 Жыл бұрын
Why do you want obfuscate a simple condition readable by anyone ? arr.length > 0 && or arr.length !== 0 && clearly indicate the intention without any conversion.
@lian1238
@lian1238 Жыл бұрын
what about !arr.length || ? Just curious
@amatzen
@amatzen Жыл бұрын
Regarding Mistake #2, I usually use Boolean(x) to make sure the result becomes a boolean value, in that regard, I don't have to make decisions whether it's 0, null etc.
@7iomka
@7iomka Жыл бұрын
I always use !!someVariable && ()
@codesymphony
@codesymphony Жыл бұрын
just use a double bang !!array.length &&
@LinhDoan3108
@LinhDoan3108 Жыл бұрын
I also prefer using double exclamation marks !! for this mistake #2
@rand0mtv660
@rand0mtv660 Жыл бұрын
I just use double bang "!!x" when trying to coerce something to boolean, but when doing length checks, I like to be explicit with "arr.length > 0". Not sure why people avoid writing that "> 0", it's not like you save that many characters when typing. I really just like the explicitness of an exact length check such as "arr.length > 0". Whenever I mentor people, I suggest them to use explicit length checks and not rely on JS quirks they don't really understand. If they want to understand those quirks, they can learn them, but writing more explicit code is just way more beneficial for everyone. Boolean(x) is also a really good option because it's super clear that you are trying to get a boolean value.
@nark4837
@nark4837 Жыл бұрын
I just thinking doing stuff like array.length && is unreadable, it should be array.length === 0 to be explicit and that actually makes it more meaningful, especially as it’s almost entirely a JavaScript only thing.
@黃宗榮-f3i
@黃宗榮-f3i Жыл бұрын
Got trapped by the second mistake before! One alternative to avoid it is using the ternary operator, which forces developers to think what value to return when the antecedent is evaluated true or false.
@cadekachelmeier7251
@cadekachelmeier7251 Жыл бұрын
One thing that has tripped me is in edge cases where i want to store a function in react state. In that case you /always/ need to use the function version of set state since otherwise the function you pass in would be interpreted as a callback instead of the actual value you want to pass in to update.
@MatthewWeiler1984
@MatthewWeiler1984 Жыл бұрын
Thank you, I didn't know about the setState functional setter. I don't update state often using the previous state value as a base, but it's good to know for when I do have to :)
@juancarloscampbell5728
@juancarloscampbell5728 Жыл бұрын
I was really proud when you explain the third mistake, I saw the code, I knew it will be wrong, what exactly was going to happen and why it happens. But then you show me the function version of setState. I'm blown away. Good job explaining everything.
@irahazda
@irahazda Жыл бұрын
Lol mistake #2 is a problem that I had in my job just few days ago. Thanks for clarifying. Very enlightening and helpful. The fix turns out to be easy as you explained but I ended up taking a much longer workaround😂
@ryanpanos8862
@ryanpanos8862 Жыл бұрын
One of your best videos ever. I knew some of this but I am embarrassed I did not know it all. THANK YOU.
@xGrawk
@xGrawk Жыл бұрын
To convert any truthy /falsy value, add !! before the variable. I.E {!!array.length && (Array length is truthy)}
@Marujhin
@Marujhin Жыл бұрын
The last one gave me a headache few weeks ago. Excellent video!
@insteresting
@insteresting Жыл бұрын
Regarding mistake #3, the state is declared as const [array, setArray] = useState([1, 2, 3]); indeed, using const implies that the reference to the array variable won't be changed and can't be reassigned within the same render. The setArray function updates the value of the state for the next render, when the array variable will be reassigned with the most up-to-date values. useState always returns an array with the most up-to-date state or with the initial state if it is the first render.
@RM-xl1ed
@RM-xl1ed Жыл бұрын
Dude! Mistake #1 is something that has been confusing me for forever!! Thanks for finally helping clear that up for me!
@elhaambasheerch7058
@elhaambasheerch7058 Жыл бұрын
Mistake 3 could be a game changer for many beginner, great vid Kyle!
@ricardomejias7957
@ricardomejias7957 Жыл бұрын
For mistake#2: I always short circuit with double exclamation mark (!!). It converts any truthy/falsy value into its true boolean value. ex: const user = null; // Whatever value goes in here, it will be correctly converted into boolean below return ( !!user && User exists );
@AutisticThinker
@AutisticThinker Жыл бұрын
8:00 - UseEffect clean-up functions?
@devwithbrian1534
@devwithbrian1534 Жыл бұрын
You explain concepts so easily! You're the best react tutor in my opinion
@coderlicious6565
@coderlicious6565 Жыл бұрын
You have natural react skills, but you also have great "follicle karma". This incarnation you have been blessed.
@HorstKirkPageKian
@HorstKirkPageKian Жыл бұрын
Regarding Mistake #3: I'd image React effectively does a === check on state variables after every operation to learn if the DOM needs to be re-rendered or not. If you push or unshift items to an array, your array reference does not change, which is why that === check (previousState === nextState) returns true, causing React to not re-render the DOM. This is funny actually, I had situation where if you change another piece of state, the DOM actually re-renders and adds the previously unnoticed state changes.
@lukor-tech
@lukor-tech Жыл бұрын
9:55 isn't empty string another one of the values? :)
@beinyourguard
@beinyourguard Жыл бұрын
really hope the course is available soon!
@hardeepchhabra450
@hardeepchhabra450 Жыл бұрын
1 question if you can answer this - in a function version of setstate , does the component rerenders everytime the state is changed? That's why it's the most up-to-date value of the state ? Or it just changes the state's value but rerenders only once after all the states run ?
@mohammedtahabmt3256
@mohammedtahabmt3256 Жыл бұрын
Thank you very much, can you believe!?. I was programming and made the error "array.push()" stop programming and your video appeared in front of me 🤩
@eamax
@eamax Жыл бұрын
As a Vue programmer, I find this kind of problem very interesting. Vue has none of these difficulties and updates values ​​or uses functions in a reactive only way. Maybe that's why its learning curve is smaller than React.
@mohammadmahdifarnia5358
@mohammadmahdifarnia5358 Жыл бұрын
Just to notice that spread operator will blow up performance and speed as its copying array. This problem definitely cause problem with large array, like in react-table before! Thank for greater content 👍
@pepperdayjackpac4521
@pepperdayjackpac4521 Жыл бұрын
what would be another method, then?
@ДанилФилатов-х7х
@ДанилФилатов-х7х Жыл бұрын
@@pepperdayjackpac4521 Array.from, slice, and concat are all recomended to use when dealing with copying large arrays
@kenankomah1
@kenankomah1 Жыл бұрын
For mistake 2 I usually just turn it into a boolean like this with the double exclamation {!!array.length && (... I am not sure if there is any drawback to this approach
@somerandomniko
@somerandomniko Жыл бұрын
The third mistake was very interesting to me because i only learned solid-js thinking that solid was inspired by react. But seeing how cumbersome state in react is vs solid i'm glad i learned solid instead of react
@VasylSunak
@VasylSunak Жыл бұрын
😅
@huge_letters
@huge_letters Жыл бұрын
Fortunately there's a lib called Immer which essentially allows you to mutate state directly.
@arshali4635
@arshali4635 Жыл бұрын
but react is far more used in projects also in very large scale project too
@elgalas
@elgalas Жыл бұрын
Tell me you don't understand closures, reference equality without telling me you don't 😅 Proxies are fun though. Valtio, immer, etc bring that in an explicit manner.
@hybs9473
@hybs9473 Жыл бұрын
@@huge_letters serious question, why someone would like or need to mutate state directly?
@kelechinwa-uwa5604
@kelechinwa-uwa5604 Жыл бұрын
Thank you! This was so helpful. The last mistake is one I've made a lot and did not really understand. This was a godsend
@Robytsu
@Robytsu Жыл бұрын
One great technique in the first example would be using the !! operator. It transforms the value to boolean true or false. And also using the ?. operator.
@adityanayak20
@adityanayak20 Жыл бұрын
I always get confused how sometimes the function body is passed or sometimes function definition itself even during resolve reject in promises confused me but this video cleared that as well. I already completed the JavaScript Simplified Course and really guys its worth it even now after being launched 2 years back and now the new react simplified course it must be way way better as Kyle's teaching style is improved exponentially. WAITING for heavy discounts when full React simplified Course Comes out. One more Tip: I think your pricing is way high according to India, because our average income is way less then America or Europe. Will be Appreciated if u adjust the pricing for Indian Cards accordingly.
@jcollins519
@jcollins519 Жыл бұрын
I make extensive use of the Boolean() constructor instead of comparison operators. i.e. Boolean(array?.length) as opposed to array?. length !== 0, and you can see why-- if arr is undefined the simple comparison becomes undefined !== 0 which is now true. And the "Boolean" makes the intent very clear compared to !!array?.length
@aryangupta8756
@aryangupta8756 Жыл бұрын
For simplifying the fix for mistake #2, how about just using !! In front of your short circuit validator. For example !!array.length. This way it’s more generic and quicker to code as compared to explicitly writing out an equal or not equal expression.
@tobafett2873
@tobafett2873 Жыл бұрын
bang bang
@havokgames8297
@havokgames8297 Жыл бұрын
I use "!!" but it's slightly less readable for devs who haven't seen it before. "!== 0" is more clear what your intent was.
@HorstKirkPageKian
@HorstKirkPageKian Жыл бұрын
Regarding Mistake #1: Is there a performance impact when you create new anonymous functions upon every component re-render, as in the print and doubler cases?
@LewisMoten
@LewisMoten 8 ай бұрын
I use functions that create functions often. It’s more of a performance aspect where you don’t want to run code every time the page renders. It’s similar to memorization, but can get complex in its explanation based on the scenario you are using it in.
@Harduex
@Harduex Жыл бұрын
One of the best teachers for js!
@shayanfaghihi
@shayanfaghihi Жыл бұрын
That was awesome! Especially the mistake #3. By figuring that out, you will learn the most important logic of both JavaScript and React. Thanks Kyle
@paxdriver
@paxdriver Жыл бұрын
Omg thank you! Use state has been plaguing me for years! I just hacked around it by setting a new variable with prev value, then set state with that temp variable lol
@knuseski
@knuseski Жыл бұрын
And how can I get the real value of the array in onClick method?
@luizalbertolausdarosa6819
@luizalbertolausdarosa6819 Жыл бұрын
If i wanted to squeeze some performance is it safe to wrap my state in a object and mutate the propriety that actually holds my data and then pass a new object with the mutated propriety?
@kimayapanash8998
@kimayapanash8998 Жыл бұрын
The print(number) function also works if we dont write retun in the function body So, why do we write return?
@piyushaggarwal5207
@piyushaggarwal5207 Жыл бұрын
I would say better to use (!) or (!!) for the second mistake. What if the something is "null" but we make the triple equal check for "undefined"
@hilkiahlavinier
@hilkiahlavinier Жыл бұрын
Great video as usual. Calm and cool and very instructive. In another video you showed how your physical phone was linked to the desktop browser in mobile view (I think). I can’t recall which of your videos this was in but can you please provide the link ?
@DisturbedNeo
@DisturbedNeo Жыл бұрын
It's more verbose, but using a conditional statement is way more robust than using the && operator for checking truthy values in JSX. So instead of: {array.length && ( )} You can do: {array.length ? () : null} That way, even if the length is 0, or if your user variable somehow becomes 0 or an empty string, it still won't render, and by utilising this pattern consistently, you can be sure that you'll never run into the "0" problem.
@lioraharon98
@lioraharon98 Жыл бұрын
About the first mistake. If i need to pass the argument to the function i call the function (without Prentice) and bind and then i pass argument to the function without invoke this approach is good?
@amritanshusinha7388
@amritanshusinha7388 Жыл бұрын
binding does the same thing as wrapping the function call in another function....so you can either do it explicitly as told in the video, or use bind function on the handler and pass the value there (which does the same thing implicitly in the end)
@lioraharon98
@lioraharon98 Жыл бұрын
@amritanshu sinha thanks. Because kylie didnt mentioned the bind method So i was thinking that is not a good approch
@AmandeepSingh-sx9ke
@AmandeepSingh-sx9ke 4 ай бұрын
Thank you Kyle for these informative videos
@arunsp767
@arunsp767 Жыл бұрын
13:12 this is why I HATE React the most. We have to keep telling React every time we change something. My entire React code is a bunch of setState functions. But Angular just knows the changes. It “detects” by itself. Angular is smart.
@JulioDx3480
@JulioDx3480 Жыл бұрын
Thank you, this video is really helpful!
@shivamsingh7219
@shivamsingh7219 Жыл бұрын
The second one I am using as per your solution but don't have idea about behind it other two mistakes I was familiar from long back
@appuser
@appuser Жыл бұрын
That last example 😘👌 great example!
@isaacopeyemirobert7868
@isaacopeyemirobert7868 9 ай бұрын
Very Insightful video!
@limitlessmaster659
@limitlessmaster659 Жыл бұрын
What about print.bind(param)
@Montagious
@Montagious Жыл бұрын
I agree with these mistakes, I used to do them and I learned them through the hard way. Thanks kyle for bringing this up.
@arkadiykotlyarov921
@arkadiykotlyarov921 Жыл бұрын
Is it ok to approach like this when dealing with && : !!array.length && ? So we just add ! ! operators to convert in to the same boolean and it is more universal to use. Works in any cases when it can become falsy
@orwellmushaikwa2591
@orwellmushaikwa2591 Жыл бұрын
That's actually an idea to try and I think theoretically it should work since !!array.length actually turns this into a Boolean check rather than a falsey check. Since !0 becomes true and !!0 becomes false.
@abdullaahmad5503
@abdullaahmad5503 Жыл бұрын
I actually do it all the time. Looks cool too.
@monome9992
@monome9992 Жыл бұрын
Why do you want obfuscate a simple condition readable by anyone ? arr.length > 0 && or arr.length !== 0 && clearly indicate the intention without any conversion.
@arkadiykotlyarov921
@arkadiykotlyarov921 Жыл бұрын
@@monome9992 I think that approach is more universal. I mean sometimes it is not about array at all. We can render something according to presentation of a field in an object. For example, !!animal.tail && (....). It could bу undefined, null, empty string, whatever, but it works fine at any case, this is universal i think. And with arrays as well
@arshali4635
@arshali4635 Жыл бұрын
all those points are very basic, but you showed what will happen if we neglected the possibility of a bug of error being formed. I know first and last one. but the second was knew to me. QUESTION: can we use nullish coalescence for the second one to check for falsy value??
@pieter5466
@pieter5466 Жыл бұрын
7:32 THIS is a critical point: the SCOPE of data
@prathamskanchan6289
@prathamskanchan6289 Жыл бұрын
What will be the difference if instead of `function` keyword i use a "arrow function", For the same e.g?
@lian1238
@lian1238 Жыл бұрын
They will be the same unless you use the keyword “this”
@Shad0wB0X3r
@Shad0wB0X3r Жыл бұрын
Thanks for mentioning point 1/2 i might need to revisit my latest project and adjust some code after watching this lol
@bruce_k3lly
@bruce_k3lly Жыл бұрын
Hey Kyle can you please please make a video on making an extension for manipulating any browser with JSON version 3
@mew6085
@mew6085 Жыл бұрын
Third mistake is my favorite 🎉 Thx a lot
@anasssanba
@anasssanba Жыл бұрын
instead of doing this ()=> print(number) u can do this print.bind(null,number) since bind return a new function it will work !
@ridl27
@ridl27 Жыл бұрын
as always learned smth new. ty!
@DevRel1
@DevRel1 Жыл бұрын
Yeah, I've been using React for a long time, I understand completely the last state using issue, but I wild be lying if I said I didn't spread and update rather than paying as a function last week and it took me about 30 minutes debugging code to figure out that one of my reducers was using the wrong method for updating state. 🙄
@thaisonnguyen8165
@thaisonnguyen8165 3 ай бұрын
Mistake #1 I can using print.bind(null, number) to an alternative way like create a callback.
@headcode
@headcode Жыл бұрын
10:00 You can just put a double bang operator on it ‘!!array.length’ and it’ll force it to evaluate as ‘false’ rather than 0 or ‘true’ rather than a number.
@michaelrose3791
@michaelrose3791 Жыл бұрын
Was so hyped for the course but the React specific one he mentions isn't out yet 😢
@bikidas5473
@bikidas5473 Жыл бұрын
1:39 Simple event handler, the way to think is you pass react onclick handler something and it's his responsibility to do it, so it's on the button click that particular function would be call, so you basically pass a reference, rule of thumb If you have no args, you can just simply write the function name, but if you just run it, it conveys running it on the first render, also if you want to pass parameters to it, you can't do it so you call a callback function and then do something (args)
@ДанилФилатов-х7х
@ДанилФилатов-х7х Жыл бұрын
In first mistake the second example is considered a bad practice, you shouldn't pass anonymous functions because they would be created anew on each rerender, if you need that number prop - define onClick handler inside the body of .map callback and then pass it in onClick
@jaibunnisamohammad9988
@jaibunnisamohammad9988 Жыл бұрын
how to work with react on mamp?
@Innengelaender
@Innengelaender Жыл бұрын
A way that has been recommended to me is using the ternary operator like: {array.length ? ( ) : ( null )} and you can also chain conditions (like else if) in a relatively easy way to read (once you are used to the ternary-operator) {showA ? ( ) : showB ? ( ) : showC ? ( ) : ( null )}
@SlickStatus
@SlickStatus Жыл бұрын
Great explanation 👍😊👌👌
@shivshankarprasad3427
@shivshankarprasad3427 Жыл бұрын
Thanks kyle very helpful
@SarathChandranPR-bg1qh
@SarathChandranPR-bg1qh Жыл бұрын
can you do a video about micro frontend services using react js
@gwnima1
@gwnima1 Жыл бұрын
Hi. Very good channel. Could you may also make content for angular and ionic?
@huge_letters
@huge_letters Жыл бұрын
For the second example you may just use Boolean(value) to get true/false - it's more generic and you don't have to think if you need to check for 0, null or else.
@scottbrown-xveganxedgex2799
@scottbrown-xveganxedgex2799 Жыл бұрын
Can you give example please?
@abhishekpratap05
@abhishekpratap05 Жыл бұрын
​@@scottbrown-xveganxedgex2799 example would be Boolean (array.lenght) So if array length is 0 it will evaluate to false and if it's greater than 0 it will evaluate as true. You can just simply try it out in a console with a bunch of inputs in Boolean()
@LyricsFred
@LyricsFred Жыл бұрын
Maybe im missing something here. But why not just use array.length > 0?
@wdsenjoyer9960
@wdsenjoyer9960 Жыл бұрын
Perfect timing!
@GreenZapperZ
@GreenZapperZ Жыл бұрын
Great videos, thanks :)
@gg.cip0t
@gg.cip0t Жыл бұрын
what should be the thought process while leaening new tech?? Like i started react recently... i am having little difficulty to undrrstand props.. but people say that is too easy,,, i feel like to quitttt,,, godddd,,,,, Give me some tipsss plzz, i feel like I'm the dumbest personnnn
@曉忻
@曉忻 Жыл бұрын
Just keep sticking with it. Try to watch more tutorials and play it by yourself. You should get your hands dirty to accomplish your goal!
@gg.cip0t
@gg.cip0t Жыл бұрын
@@曉忻 yesss, i will do my bestttt!!!!! thank you
@PhaaxGames
@PhaaxGames Жыл бұрын
One tip would be to use GPT as your programming companion. Give it the code, ask it about the things you don't understand, and it'll explain it for you. :)
@codesymphony
@codesymphony Жыл бұрын
only learn what you need to
@gg.cip0t
@gg.cip0t Жыл бұрын
@@PhaaxGames ok i will try that.....
@steviewonder580
@steviewonder580 Жыл бұрын
Kyle's videos are basically an ad for all his other videos lol
@codedjango
@codedjango Жыл бұрын
Can you please explain why there are almost no tutorials on react class based components here on YT? and why YTubers prefer only function based react components (including yourself) ??
@Abdulrahmaneid-sp6qy
@Abdulrahmaneid-sp6qy Жыл бұрын
the #3 mistake there is another solution for it , which is array.push and unshift with setArray([…array]) after all one of them. Also this solve run console.log problem before render
@Kay_Drechsler
@Kay_Drechsler Жыл бұрын
Very well explained. The last example is something I'll need to keep in mind to not run into it again. 😊
@ahmadshbeeb
@ahmadshbeeb Жыл бұрын
thanks man you're a legend.
@theisoj
@theisoj Жыл бұрын
Thanks Kyle as always 👍
@mehrdara6545
@mehrdara6545 Жыл бұрын
It would be great if you also do react native videos
@KlethonioFerreira
@KlethonioFerreira Жыл бұрын
Why people don't talk about bind()?
@rodrigolaporte274
@rodrigolaporte274 Жыл бұрын
Excellent!!!
@whaisonw2865
@whaisonw2865 Жыл бұрын
There is actually a third value that doesn't get rendered. It's an empty Array [].
@vladimirvalko1108
@vladimirvalko1108 Жыл бұрын
!!value && is fine too 👌🏻
@patrykorowski4141
@patrykorowski4141 Жыл бұрын
Thanks! 😀
@vakhtangnodadze4802
@vakhtangnodadze4802 Жыл бұрын
I've been teaching Programming and React for a few years myself. The first mistake is by far the most common beginner/intermediate developers make. Great video!
@honecode2120
@honecode2120 Жыл бұрын
Not sure if it’s a bad practice but on an array.length check for short circuiting I usually add !! at the beginning which will convert the 0 to false
@alexanderkomanov4151
@alexanderkomanov4151 Жыл бұрын
Thanks a lot!
@babakamaal8999
@babakamaal8999 6 ай бұрын
Thanks man
Are New Frameworks Replacing React?
11:23
Web Dev Simplified
Рет қаралды 302 М.
Top 6 React Hook Mistakes Beginners Make
21:18
Web Dev Simplified
Рет қаралды 584 М.
So Cute 🥰 who is better?
00:15
dednahype
Рет қаралды 19 МЛН
小丑女COCO的审判。#天使 #小丑 #超人不会飞
00:53
超人不会飞
Рет қаралды 16 МЛН
“Don’t stop the chances.”
00:44
ISSEI / いっせい
Рет қаралды 62 МЛН
Why Signals Are Better Than React Hooks
16:30
Web Dev Simplified
Рет қаралды 493 М.
All useEffect Mistakes Every Junior React Developer Makes
22:23
Most Senior React Devs Don’t Know How To Fix This
9:25
Web Dev Simplified
Рет қаралды 184 М.
Intersection Observer API
23:44
JS Guru Atul
Рет қаралды 3 М.
This New React Hook Breaks All The Rules And I Love It
7:56
Web Dev Simplified
Рет қаралды 185 М.
Speed Up Your React Apps With Code Splitting
16:50
Web Dev Simplified
Рет қаралды 395 М.
Most Beginner React Developers Do This Wrong
13:47
Web Dev Simplified
Рет қаралды 238 М.
Every Beginner React Developer Makes This Mistake With State
6:37
Web Dev Simplified
Рет қаралды 217 М.
Learn React Router v6 In 45 Minutes
46:20
Web Dev Simplified
Рет қаралды 575 М.
The Most Important Skill You Never Learned
34:56
Web Dev Simplified
Рет қаралды 222 М.
So Cute 🥰 who is better?
00:15
dednahype
Рет қаралды 19 МЛН