No video

Why I Don’t Use Arrow Functions With const/let

  Рет қаралды 185,230

Web Dev Simplified

Web Dev Simplified

Күн бұрын

Пікірлер: 533
@fabianramirez3222
@fabianramirez3222 Жыл бұрын
The first reason is actually why I like arrow function over classic function definition. Code flow for me goes from definition to implementation from top to bottom, instead of what you mention about "important" code at the top. If I need something I like to know this "something" exists before trying to use it, and using arrow function along const enforces just that.
@alesholman801
@alesholman801 Жыл бұрын
I was thinking the same thing !
@eavdmeer
@eavdmeer Жыл бұрын
Same thought here. I would never have the important stuff on the top. Especially because of how hoisting works. If you can't always do it, you should never do it
@eavdmeer
@eavdmeer Жыл бұрын
@@Shulkerkiste it absolutely makes sense just for brevity to put functions in constants,especially so with arrow functions. Of course not when you write them out with all the superfluous brackets he was using and a useless 'return' statement. And however clean your code is, the constants you need must be declared before you use them, whether they contain functions or other values
@dany_beltran
@dany_beltran Жыл бұрын
If it's about code flow, it's not like classic functions can't be moved to the top.
@MaxPicAxe
@MaxPicAxe Жыл бұрын
Similarly, we don't put import statements at the bottom of the code
@ProwlerDigital
@ProwlerDigital Жыл бұрын
It’s refreshing not seeing a title like “STOP DOING THIS” whenever I see that, I just scroll passed the video
@ribasenric
@ribasenric Жыл бұрын
This IS the reason I like them. :) Put helpers functions in another file and load it
@Raxxman
@Raxxman Жыл бұрын
ditto
@raellawrence7116
@raellawrence7116 Жыл бұрын
Yeah. If all the helper functions are hidden at the bottom of the logic, that seems like code that is not easily shared and is at risk of repetition.
@CWhitmer22015
@CWhitmer22015 Жыл бұрын
I was thinking the exact same thing.
@TheShizz41
@TheShizz41 Жыл бұрын
100%. Makes the code that runs with helper functions easier to debug when you can just put it side by side with the helper function file
@LogicEu
@LogicEu Жыл бұрын
Also makes much more sense coming from any other language where you need to declare your functions and classes before you can use them.
@Radek11boss11boss
@Radek11boss11boss Жыл бұрын
The first reason is why I use arrow functions, i have to have some structure in my code not random mess with fn declarations between usage
@indriq78
@indriq78 Жыл бұрын
utilizing hoisting and putting the actual solution on top is less messy than putting a ton of "intro" in front of the important part.
@wisdomeispower
@wisdomeispower Жыл бұрын
True, you need to create function thene use it, this is how code should work. If hoisting were good thing let and const would have hoisting to. You should always create function thene use it no metter if you are using function expression or decloration.
@rand0mtv660
@rand0mtv660 Жыл бұрын
@@indriq78 That is really highly subjective. I personally dislike if a function on line 10 is calling a function that's on line 100, I don't really care if the most important logic is first in the file or not, I just care that things are defined in order so that they are defined before they are used. It's just easier for me to piece together things if they aren't just randomly spread throughout a file. I can also read two things at the same time on same IDE/editor page if I have two functions one after another, but the second one is calling the first one. I can just have both of them in the same view without using multiple editor views or whatever. I feel the same way about variables as well, but with variables it makes more sense to have them defined before using because variable hoisting is just weird in normal code flow when reading code.
@gabrielemarino1360
@gabrielemarino1360 Жыл бұрын
I just move all the functions to another fileto have a cleaner environment
@thekwoka4707
@thekwoka4707 Жыл бұрын
@@indriq78 but the functions in this case should be in another file...
@MaxPicAxe
@MaxPicAxe Жыл бұрын
My opinion. 1. Hoisting -- I personally prefer to write code in this order anyway, the outer layers (i.e. the main logic) is further down, so I always jump straight to the bottom of a file if I want to know what's getting executed. I guess this just might be preference. I also come from a background of pure mathematics where everything is structured in a way where there is no hoisting, everything is ordered naturally, that is, sequentially. Regarding your example with helper functions, these can always be moved to a different file, that makes more sense if you believe there should be a separation.
@NickCombs
@NickCombs Жыл бұрын
Although the IDE helps with this to some degree, it is generally more difficult to find the function from an invocation if they are split between multiple files. Still, I appreciate the different viewpoint. Looking for the top-level calls near the end is probably more natural for coders who are used to more imperative programming styles.
@theblackunderflow1842
@theblackunderflow1842 Жыл бұрын
Coming from a C++ background, I anticipated that function declaration before its usage was the norm..
@tuananhdo1870
@tuananhdo1870 4 ай бұрын
good point here. I think they have a reason to add the strictness to "const"
@afzalhamdulay
@afzalhamdulay 3 ай бұрын
this video wasnt much much about syntax but more about logic. this was actually awesome knowledge that you gave. thanks!
@dasten123
@dasten123 Жыл бұрын
I agree on using the function keyword for defining small helper functions. But I still like to define them before using them.
@maxstetsenko8626
@maxstetsenko8626 Жыл бұрын
Yea, me to :)
@catsgotmytongue
@catsgotmytongue Жыл бұрын
as an engineer who has coded in many languages over 20 years, JS is the one that is the most painful to deal with BECAUSE of 'hoisting' and the changing context of 'this' depending on how it's called. Among other things, JS has so many odd quirks that make it a pain compared to many other languages.
@Albert_Hall
@Albert_Hall Жыл бұрын
it is A POWER of JS, it is it's POWER !) not a weakness or a pain, it is it's POWER !)).
@jcasimiro2788
@jcasimiro2788 11 ай бұрын
hey man, if i wanna became a backend developer what language would you recommend to start?
@oohkumar
@oohkumar 10 ай бұрын
I feel your pain. The descriptions of the this keyword across tutorials on KZfaq are confusing. I would start by looking at tutorials on the execution context. Once you get that then topics such as hoisting, scope and the this keyword become clearer. kzfaq.info/get/bejne/hNpdpMSQsdK5eGQ.htmlsi=bvcDZ-ET88oZeT_R
@IvanKleshnin
@IvanKleshnin 2 ай бұрын
"Dynamic this" solves an Expression problem though. It would be a disaster to simply remove it. An alternative object extension mechanics would have to be provided before that.
@OrelNaya
@OrelNaya Жыл бұрын
for the first reason you mention, I think it's better to split the code to multiple files so when you use them you just import them where you use them
@chbrules
@chbrules Жыл бұрын
C-style programming :)
@ChillAutos
@ChillAutos Жыл бұрын
@@chbrules it's just clean coding.
@pepperdayjackpac4521
@pepperdayjackpac4521 Жыл бұрын
@@ChillAutos C for clean
@yestermonth
@yestermonth Жыл бұрын
@@pepperdayjackpac4521 *Memory Leak stains code two seconds later*
@undisclosedperson3871
@undisclosedperson3871 Жыл бұрын
Reason 1 is also why I use arrow functions. Not out of puritanical belief or anything, but the backend language I work with the most is F#, which requires everything to be declared before it can be used. And when writing functional Javascript (or especially Typescript), the languages are actually extremely similar and I think it's the best functional approach. F# enforces order of files too, which can't really be done in Javascript, but I wish it could be.
@devhelp
@devhelp Жыл бұрын
Slight correction in your event handler, "this" is the same as event.currentTarget, not event.target. The target is the element that was clicked on while currentTarget is the element with the event handler.
@phillipandrew87
@phillipandrew87 Жыл бұрын
In some cases, such as this one, it would be the same, though it's definitely an important distinction to keep in mind.
@redsnflr
@redsnflr Жыл бұрын
yeah, just to make it a little clearer: (i) event.target is the node where the handler function was written (ii) event.currentTarget is the node(parent) where said handler function bubbled up to - where event currently is being handled.
@phillipandrew87
@phillipandrew87 Жыл бұрын
@@redsnflr Not sure what you mean by where it was written. The handler is called (I think you may have meant this?) when the element, or descendant of the element, that the event listener is registered to is clicked (if it's a click listener, as is the case here). If there are no descendant nodes, or if you just click somewhere in the parent where the child is not, e.target will then equal e.currentTarget, ). If anyone wants to better visualize it, just search event propagation for some easy to understand diagrams.
@redsnflr
@redsnflr Жыл бұрын
@@phillipandrew87 yes, where it's "handled" is where you write the event handler function, e.target is static but currentTarget is dynamic based on where the event currently is.
@phillipandrew87
@phillipandrew87 Жыл бұрын
@@redsnflr Okay, I see what you were saying. By the way, just so no one who reads this gets confused, e.target is dynamic, e.currentTarget is static.
@brett84c
@brett84c Жыл бұрын
Love your channel, man. I love that your videos are concise and straight to the point. Learn a few new things everytime I watch your content, even if it's a topic I already know well and you give me a different perspective on it.
@yorutamashi
@yorutamashi Жыл бұрын
i think that calling things AFTER defining them makes much more sense, I get super confused when the file doesn't have to respect a specific order... and seeing that so many people do terrible crap when they are not forced by linters or interfaces like typescript, I think it's very much needed to adapt to these better practices
@neontuts5637
@neontuts5637 Жыл бұрын
Thanks for sharing Kyle. I prefer to use the utils file to store the helper functions and import it to the main file.
@redsnflr
@redsnflr Жыл бұрын
depends on the size of the app and how often you're going to reuse the helper functions.
@codingman313
@codingman313 Жыл бұрын
I think arrow functions do not require context switching, I may be wrong. Thus for small snippets of code I prefer using arrow functions and for larger snippets I use normal functions. As for organizing code, whether I write code at top of my file or bottom doesn't matter to me that much due to modularity, I do not write any thing else in the main script rather one main function and then calling it. But that's just my style. Honestly I do feel all the rules and guidelines for writing clean code is meaningless if your code is not performent. Most of the time this leads to unnecessary abstruction that often have many unnecessary instructions that are not needed but still called only to keep the structure "clean". For example, looping over same array multiple times in different functions where everything could be done in a single loop causing much less memory access (one of the biggest bottlenecks). Javascript is not a compiled language, but and interpreter. So from compiler diesign perspective, the optimization done by jit compilation is no where near like languages like c, where compilation in release mode throws away all the fancy abstruction and completely reorganize only performent code. Sadly dueto the dynamic nature of js and being and interpreted language this is not possible. So developers should be mindful of the cercumstences. However again it depends on how performent one wants his code to be. For a dataview kind of website it doesn't matter, but for things that requires high amount of computation it matters. As an example, working with canvas 2d if you floor the arguments before passing them to the function, you will see a significant boost in performance. The reason is simple, interpreters are not as smart as compilers when it comes to optimization. The point I want to make is that function calls have costs .
@srleom
@srleom 3 ай бұрын
I agree with Kyle here and use normal functions for helper functions and arrow functions for callback functions. It's much easier to identify a function this way, plus hoisting is a bonus.
@ZakiWasik
@ZakiWasik Жыл бұрын
On a real production project I almost certainly will have each of my functions in a separate file (excluding anonymous functions and callbacks) and when passing callbacks I usually want to bind the parent context like it is default with arrow functions, so I'm the opposite: I use the function keyword only when an arrow function does not cut it. Which is rare.
@NicholasHarris
@NicholasHarris Жыл бұрын
Yeah, the example util functions given are great examples of functions you'd never even have in the same file as where they're being used in the first place. Sure, having the functions below the main logic of the file makes sense, but having those functions in a different file entirely makes even more sense. At which point using function keyword vs arrow functions don't really matter in terms of readability anymore.
@arjix8738
@arjix8738 Жыл бұрын
One of those rare cases is when you want to use the arguments keyword!! Like, you made a callback, but there are no docs, so you print out all the arguments of the callback, this doesn't work with arrow functions sadly
@ZakiWasik
@ZakiWasik Жыл бұрын
@@arjix8738 any cases where you could not just use the rest parameter?
@arjix8738
@arjix8738 Жыл бұрын
@@ZakiWasik it's a matter of preference, I prefer arguments when the arguments are unknown
@feynthefallen
@feynthefallen Жыл бұрын
You make a lot of good points there, especially the ReferenceError which I honestly hadn't come across yet, because I work with nested functions almost exclusively. Maybe it also has something to do with the fact that to me as an old C coder defining a function before use is as natural as breathing. The reason why I love arrow functions so much is because unlike all the syntactic sugar around functions, classes and methods todays programmers grow up with, assigning an arrow function is very close to the bare bones of functions, which, when all's said and done, are very little but an address to jump to in memory. I must say, I disliked JavaScript for the longest time for its lackadaisical typing and conventions, but ever since I began looking at it from the bare-bones perspective, it has fast become my favourite language, even before Lisp and my beloved C
@rohithgoud30
@rohithgoud30 Жыл бұрын
Yes even I didn’t face in react but maybe its issue in vanilla javascript I use it still I have a habit of writing function in order then call them at the end just like other programming languages 🥲.
@redsnflr
@redsnflr Жыл бұрын
do you use Typescript given your JS typing issues?
@feynthefallen
@feynthefallen Жыл бұрын
@@redsnflr Funny you should ask. It took me a while to discover TypeScript, but I instantly fell in love all over again 😉 Honestly, it's not "proper" hard typing, but that's what makes it so interesting - it holds a mirror up to your coding habits showing you what hard typing made you take for granted.
@darklorddracula512
@darklorddracula512 Жыл бұрын
Why would you define the utility function in the same file you call them ?
@trappedcat3615
@trappedcat3615 Жыл бұрын
Not all functions are utilities beyond 1 file.
@IceMetalPunk
@IceMetalPunk Жыл бұрын
To me, hoisting is one of the most terrible features of JS, and it should be removed and burned. The idea that your code can reference things that you haven't even defined yet is just asking for spaghetti code. Removing the possibility of hoisting is one of the biggest reasons *in favor* of arrow functions, in my opinion. Module imports can clean it up if you don't like scrolling through the definitions to get to the main logic.
@Rocky.G
@Rocky.G Жыл бұрын
i m a full stack developer.. I know this concepts.. but refreshment of this concepts and the explanation in your videos gives my mind a kind of comfort and boosts confidence for unknown reason.. keep up the good work friend.. your video was inspiring for me to keep working as dev !!
@rodrigolaporte274
@rodrigolaporte274 Жыл бұрын
Ok, so now I have two things I disagree with you: not using semicolons, and now the arrow functions :P To me, having to define the functions before they're used is not an issue, but a plus. It helps when you work on a team where usually a few devs are messy with their code, so these small things that force you to be a bit more organized are really helpful. Same goes for some people's neverending creativity for using 'this'. With arrow functions we avoid several errors that cause bugs. So in the last few projects I've worked on, we use the opposite strategy: everything's an arrow function except for some specific cases. As for the syntax, it's just preference/getting used to. Anyways cool video, it's nice to see different approaches / trains of thought.
@Issvor
@Issvor Жыл бұрын
WDS has some hot takes and I think he's doing it for the controversial comments and views. Almost every short I've seen from him is just objectively bad, but it drives a lot of views and comments. Most of his project tutorial videos have much better information, but the individual "why I don't use X" videos blow. His "why I don't use the useEffect hook" video is a golden example of a really awful take for no reason other than rage bait
@oyuu6565
@oyuu6565 Жыл бұрын
I think for react is more cool and clean code to work with arrow functions with const/let, because you won't doing any hoisting since your state and stuff is being defined at the top of your component function, and any helper/handler function as well don't need to be hoisted
@IceMetalPunk
@IceMetalPunk Жыл бұрын
@@Issvor Assume mistake over malice. I don't think he intentionally does it for rage bait; I think he's just mostly a self taught and solo developer who doesn't have all the information.
@Issvor
@Issvor Жыл бұрын
@@IceMetalPunk That's a fair point
@MrMudbill
@MrMudbill Жыл бұрын
I haven't seen this useEffect short but I personally put a lot of effort into avoiding using useEffect due to it's re-render strategy and awkward handling. However, I don't avoid it at all costs. Sometimes it's the perfect (or only) tool.
@shawazonfire
@shawazonfire Жыл бұрын
thank you so much, videos like this one (efficient, dense, clear) help me fill in the significant gaps i have in my knowledge
@codebymoonlight
@codebymoonlight Жыл бұрын
Wow. Awesome to finally see a Kyle video I don't agree with after many years
@mrmibes
@mrmibes Жыл бұрын
I had the "this" problem two days ago and could not understand why the arrow function didn't work, and the function did. Thanks for explaining it! I ended up just telling the linter to ignore my function, lol.
@ABDULMANAN-el8gr
@ABDULMANAN-el8gr Жыл бұрын
WDS is the mentor we all need.
@autofires
@autofires Жыл бұрын
Thanks for this. As a tech lead I use your entire channel to teach the “Dunning-Kruger Effect” and this video expands the syllabus.
@berakoc8556
@berakoc8556 Жыл бұрын
Most of the concepts in this channel are just personal enlightenment. And that's one of the reasons I don't like KZfaq. There are some good channels but most of them are crappy. And also, using hoisting was a bad idea from the beginning. It reverses the flow logic and overtime makes things messy. These channels always rely on small code pieces. You can make everything right with a small code piece. The issue is to make it valid for huge repos.
@subliminakeys1674
@subliminakeys1674 Жыл бұрын
I thought I was alone with this concept. I hate using const over function. Most of the reasons you said but primarily because when I'm scanning code for a variable or function I don't want everything to look like a variable. And hoisting, I don't want to worry about where I'm defining my function. The funny part is it's not even really any shorter of syntaxes. Const name () => is is literally one less character than function name() . You can omit the brackets in arrows but I often use them anyway.
@CreatorX64
@CreatorX64 Жыл бұрын
Good points, but this convention breaks as soon as you need to type a function in TypeScript (think of FC). Plus, I've found that relying on hoisting generally results in poorly organized codebases unless you're working on a tiny project w/ a single file (where arguably convention wouldn't matter that much anyway). If you think "what if I want to run some code in a utils.js file where I export my helper functions?", then I would say look back at your architecture and think whether you really want to run arbitrary code in a utilities file that's meant for "utilities". Idk, these are some of my reasonings to use arrows everywhere (except in OOP & decorators). Everyone should use the approach they feel most productive in as long as they know the differences between them 💙
@ToadyEN
@ToadyEN Жыл бұрын
I don't use arrow functions with const/let but didn't even think why. Thank you for telling me why 😂
@nandoflorestan
@nandoflorestan 2 ай бұрын
The people in the comments trying to refute the first point of the video are forgetting one thing: In a team, one programmer should avoid making the dreams of other programmers impossible. In some cases (especially very small libraries) it totally makes sense to put the public API at the top and less important functions at the bottom.
@danzanity
@danzanity Жыл бұрын
Great vid, I’m an sdet coming from c# and transitioning to Js, your vidz really helped me
@tashriser
@tashriser Жыл бұрын
Amazing! It's nice to see an expert writing standard function syntax for the exact same reasons I also do.
@thiagozanetti
@thiagozanetti Жыл бұрын
It seems to me that almost everybody uses arrow functions for the same reason: to give a structure to their code. It's like telling a story without giving spoilers.
@ky3ow
@ky3ow Жыл бұрын
as solo dev its okay but when you work with code that someone else wrote, hoisting is pain in the ass because in comparison, if there are no strict rules where we should place functions, hoisted functions is immediate "peek definition", because they can be lower in file or higher, whilst arrow functions enforce you to define them before using, that makes them not significantly easier but quite a bit, also no "this" after dealing with class components in react i truly started hating hoisting
@brennenherbruck8740
@brennenherbruck8740 Жыл бұрын
I hate this... but I love this comment
@codecleric4972
@codecleric4972 Жыл бұрын
A lot of people commenting about putting helpers in another file... A couple things: 1) Definitely do that. I think Kyle already knows that's best practice. But for the sake of brevity, he makes his point here not mentioning it. 2) If you DIDN'T do that, and kept all helpers in the same file, I think what Kyle says makes perfect sense -- important logic at top, function definitions below. 3) Either way, for DECLARING functions, I agree that the traditional function syntax is clearer -- yes even when declaring them in separate files/modules. 4) Arrow functions are awesome, but 99% of the time I use them I would agree with Kyle here -- it's in the context of anonymous lambdas.
@ThaRealIansanity
@ThaRealIansanity 11 ай бұрын
Interesting take. Like a lot of the commenters, I define/declare functions at the top whether using the function keyword or arrow functions. I'll even look at my code below and go back up and cut/paste the functions in the order in which they are called. It just works with my brain that way. But I think one advantage to putting your "important code" at the top is that once the functions are written and tested, you might argue that there is no need to see them because when writing the "important code" and using tested/proven functions, you don't need to be concerned with the implementation. However, that is one of my issues. I always concern myself with the implementation. Slows me down sometimes. 🙂 Another thing I will say is that sometimes it takes a second to see whether something is a function or a const variable if they are all bunched together so it becomes more important for readability to use white space properly and have some order to defining const someFunc => oneliner; vs const someVar = value;
@BboyKeny
@BboyKeny Жыл бұрын
Your use of hoisting is what the Clean Code book teaches. It kinda reads like a newspaper article where the important stuff is on top, the more you go down the more details you get. For example if I'm going to explain how to make a pepperoni pizza, I can say: "Roll the dough out, spread tomato sauce, grated cheese and sliced pepperoni on top in that order. Then put the pizza in a preheated oven on 200 celcius for 30 minutes. Slice the pizza and eat when sufficiently cooled down." This is already pretty verbose but technically for most people this is enough to know what we're making and how. The "helper functions" would then in order that they appear underneath the main function. So in this case: "The dough is made by..." "The tomato sauce is made by..." "You grate the cheese by..." "The cheese is made through..." "Slice the pepperoni in thin 2mm..." "The pepperoni is made by..." "The pizza is sliced in 8 different equal parts" I could put the oven preheating details also in it's separate section but making it too generalized actually takes away descriptive power. So it's important to keep track of your level of abstraction, don't mix the different levels too much and don't go too deep that you get lost. When you open the file you immediately see what the code is doing. You scroll down to see how it is being done exactly.
@UsernameUsername0000
@UsernameUsername0000 Жыл бұрын
You make a good case, but you stretch the analogy too thin. Ideally, you wouldn’t have your functions lain like that in a single file to where they can result in this issue to begin with. That, in my opinion, is bad code. Trying to remedy that with hoisting is not clean code, it’s bandaging some (likely) not-well-thought-out code organization. More so, your analogy can be used to derive some benefits for the arrow syntax. With hoisting, if you end up with the scenario in the video, functions that compose or use each other need not be declared in a meaningful or logical order. Arrow functions force you to order your functions from the most self-contained to the most complex. This way, you are guaranteed to find that the steps for making a basic pizza dough are placed strictly before the steps for a mozzarella-stuffed dough, and not jumbled anywhere else. THIS reads more like a recipe book.
@MYount
@MYount Жыл бұрын
This is really helpful. I am always trying to find ways to use arrow functions. You make a great point here. Thanks.
@re.liable
@re.liable Жыл бұрын
I know about hoisting but I don't rely on it. I write regular functions as much as possible on the "top-level" to take advantage of the `function` keyword as you mentioned, and at the top of the script so that it "flows" naturally
@The1stKing
@The1stKing Жыл бұрын
I just watched the intro part and I'm already sold. 😊
@monafdaod2133
@monafdaod2133 Жыл бұрын
Thanks, kyle It was a great comparison
@MaxProgramming
@MaxProgramming Жыл бұрын
Finally now I'm not alone with this opinion
@darklorddracula512
@darklorddracula512 Жыл бұрын
The main reason I would use const arrow is the fact that they can't be modified. If you do (with a function) formatNumbers = [1, 3] somewhere bellow It would "destroy the pointer to the function itself".
@BritainRitten
@BritainRitten Жыл бұрын
Basically you should prefer not to mutate almost anything unless it's better for a specific case for some reason (readability, performance, can't do otherwise, etc). So mutating a function should pretty much never happen - whether you define them with function or const
@IceMetalPunk
@IceMetalPunk Жыл бұрын
@@BritainRitten Right, and being able to define a function as const enforces that.
@ja31ya
@ja31ya Жыл бұрын
@@IceMetalPunk If you need to enforce the idea that you shouldn't be mutating a function reference, then you almost assuredly have far more serious problems within your team...
@soniablanche5672
@soniablanche5672 Жыл бұрын
@@BritainRitten how do you mutate a function ? lol
@thecoolnewsguy
@thecoolnewsguy Жыл бұрын
@@soniablanche5672 maybe by just declaring it again
@maximroslow
@maximroslow Жыл бұрын
As a react developer I always use arrow functions, but examples in this video is cool, it's good to know this stuff
@MrMudbill
@MrMudbill Жыл бұрын
Personally I like definining react components as `function`. E.G. `function App() { return }` rather than `const App = () => { return }` (assuming you have some logic in it). However, the benfit of arrow functions in React can be for TypeScript typings, like `const App: React.FC = (props) => { return }`, but I find these explicit types unnecessary since the implicit ones are IMO just as good. But I've used both styles, and at the end of the day, the most important thing is consistency within a project, and harmony with other devs :D
@abc_35p
@abc_35p Жыл бұрын
I use function expressions at work because that's what's used there and it's not important enough to rock the boat. But I really dislike them in most cases. I find regular function declaration syntax much easier to read. I use arrow functions a lot, but as in the video, mostly when defined inline as a callback, or if I need to close over `this` (very rare). Hoisting is sometimes annoying but mostly not an issue since most of my functions will be in module files rather than defined where used.
@CanRau
@CanRau Жыл бұрын
Yea totally agree with all points👌 after my initial arrow function hype I moved back to normal functions in many cases
@bronstein007
@bronstein007 Жыл бұрын
Definitely the most important reason for understanding whether to use ES5 or ES6 function syntax is with 'this' binding, especially when it relates to creating methods. That is actually important for the functionality. While I appreciate and understand your 'main reason' for better layout flexibility with hoisting, it is simply personal preference and isn't as important imo. Either way, thanks for the reminders. 'This' is and will always be confusing forever.
@leandro-siqueira
@leandro-siqueira Жыл бұрын
You last frase defined me. Imagine learn "This" in a language that isn't you native one. It's so confusing 😂
@MrMudbill
@MrMudbill Жыл бұрын
Haha, good thing we're mostly past using `this` in JS these days since there's a much bigger focus on functional programming. I don't think I've used `this` for years since when I did jQuery stuff. And I'm happier for it.
@nandoflorestan
@nandoflorestan 2 ай бұрын
In short, use arrow functions only for: 1. anonymous callbacks 2. event handlers I completely agree.
@hicoop
@hicoop Жыл бұрын
Never thought of functions this way. Thank you!
@faahkoo
@faahkoo Жыл бұрын
I actually hate hoisting lol, and my helper functions are always in a separate file anyway. But it’s all about taste in the end of the day
@user-qj7gw1kj3u
@user-qj7gw1kj3u 4 күн бұрын
For reason 1. If I have many helper functions and especially if I want to use them in many different scopes or in different files. I like to have them in an object, possibilty in a separate file that can be imported. This way, I have a structure where I don't have to scroll past the function expressions all the time as I can keep them in a separate file or collapse them all together, and this works really well with arrow functions. But it really depends on the complexity of the project naturally. E.g.: ``` export const helperFunctions = { helper0: () => { console.log("I help") }, helper1: () => { console.log("I help too") }, helper2: () => { console.log("I help three!") } } ```
@mukhammadakilov2828
@mukhammadakilov2828 Жыл бұрын
Thanks for excellent video and Happy New Year!
@gmg8771
@gmg8771 Жыл бұрын
Why do you want hoist arrow functions, they're introduced in javascript for the specific cause. I don't understand the argument here.
@ireallyamayuube
@ireallyamayuube Жыл бұрын
Yeah. It's like saying "I don't use Typescript because it's more work". Correct (in a sense), but that work is there to actually make the code less likely to throw errors along the way, when the project grows much bigger. Hoisting is ok for small script and such, but I would avoid it as much as possible if growth is expected. Also maybe I'm weird, but I like the arrow look, especially with no parameters it looks like it's taken from an ancient occult book lol
@firedforfighting
@firedforfighting Жыл бұрын
He never said he wanted to hoist arrow functions, he simply said why he uses one over the other. Those are two different statements
@gmg8771
@gmg8771 Жыл бұрын
@@firedforfighting I wrote what i understood from the video, but I side with arrow functions coz I want errors to be thrown at development stage and not at the prod stage if they went unnoticed while using regular functions.
@nashishere
@nashishere Жыл бұрын
If you use typscript like almost everyone else, then that means your code will be transpiled into es5 anyways, hence your functions will be actual functions regardless of the declaration method and be hoisted anyways. i got your point tho
@akillersquirrel5880
@akillersquirrel5880 Жыл бұрын
My preference is to use arrow functions only where there's an immediate return, or if I need the outer this. `function a(b) { return b+1 }` is less typing than `const a = (b) => { return b+1 }`, but more typing than `const a = (b) => ( b+1 )`. In general, this allows the reader to quickly make assumptions about the code - if you see `=> {`, you know to look for a `this` referencing the outer block
@garikaib
@garikaib Жыл бұрын
I am a Vue dev and in Vue 3 I exclusively use arrow functions. I a helper function is required at the top it's placed in a file of it's own. I prefer to group blocks based on what they do rather than just put "important" functions at the top.
@Gol_D_Roger_The_Pirate_King
@Gol_D_Roger_The_Pirate_King Жыл бұрын
You just introduced OOP thats great you are learning.
@jacobphillips9235
@jacobphillips9235 Жыл бұрын
Thank you! I 100% agree.
@joelmason6818
@joelmason6818 Жыл бұрын
I discovered THIS the hard way during a implementation of a binary search class object. It was quite interesting.
@atalhlla
@atalhlla Жыл бұрын
I’m almost always dealing with other people’s code right now so my own preferences are pretty mercurial, entirely down to how I’m feeling on whatever small project I’m working on. I’m usually consistent within a project, but across projects it can vary. I think I usually use regular functions when just defining them in a module because when I’m naming them arrow functions don’t save much if any typing. That’s about it.
@MrMudbill
@MrMudbill Жыл бұрын
This is a based take
@safarl45
@safarl45 Жыл бұрын
So you write garage code?
@michelaveline
@michelaveline Жыл бұрын
Kyle, have a great 2023!
@alainemaga7123
@alainemaga7123 Жыл бұрын
Thanks Kyle for making me a better JavaScript developer.
@rickyrico80
@rickyrico80 Жыл бұрын
I assume you've never worked on a massive code base where you end up in scope hell from legacy code you or 20 other developers wrote. There is a place for everything, and let and anonymous functions are a godsend.
@Steve-zo2zt
@Steve-zo2zt Жыл бұрын
I prefer function keyword because it is clear that it is a function, not a const variable. Readability. It gets confusing when everything starts with const.
@arthurverot7089
@arthurverot7089 Жыл бұрын
When you use typescript, it doesn't matter if you use arrow functions or functions, it wants you to declare them before calling them.
@simpleedge
@simpleedge Жыл бұрын
I’ve been doing const arrow functions ALWAYS because it’s just the way we do the internet now…I have missed my hoisted functions so much!!! So much more readable. thank you for permission to mix and match depending on the use case 😊😊
@RandomChanel6150
@RandomChanel6150 Жыл бұрын
That's a good reason, I also like to have details of implementation at the end of the file below everything else. But there are ways around functions declaration (is that a right name for using function keyword?). When (if) you use react components you can just put helper functions at the bottom, as the component will be ran later than those, so they will exist at that point. Also those helper functions can just go to a separate file (which they probably should). So I usually still use const/let functions.
@dweblinveltz5035
@dweblinveltz5035 Жыл бұрын
I always default to arrows unless I need to create a new context. I'm not bothered by functions clogging up the top of file because they probably belong somewhere else if you have that many of them.
@bj0rnen
@bj0rnen Жыл бұрын
As others have said, the flow of code as is executed is generally first defining things and then using them, so having functions before executing them makes sense. Now it’s fine to have a different preference but you can’t escape the reality of how code is executed entirely. If you import a function from another file, for example, it has to be at the top of the file. At best you can partially change the order by utilizing hoisting but not entirely, so you still end up having to jump around a file in certain cases. As someone who values consistency I find it much easier to simply go with the flow of code execution and generally expect entry points to be at the bottom of a file. Then there is the whole thing when working with a team and/or an existing code base, you generally will want to match the style of the project, so always keep that in mind. :)
@bj0rnen
@bj0rnen Жыл бұрын
Not to mention that defining your helper functions as arrow functions can usually make them much more compact (if they can be written as one expression) and make scrolling through them much less of a big deal.
@BlurryBit
@BlurryBit Жыл бұрын
Makes sense! I knew the fact but never really thought about it until now. :)
@JeremyBolanos
@JeremyBolanos Жыл бұрын
Great example! 🧑🏼‍💻
@nicolajbro9545
@nicolajbro9545 Жыл бұрын
I devide my code in sections, one being helpers functions, all declared with arrow functions. Later I have one update function, which all actions go through, so I’m never in doubt whether I’m looking at a helper function or the core of it, because there is only one core update function. The rest is helpers and sometimes i move to another file and have them all imported. Nice and clean 😊
@kodraa
@kodraa Жыл бұрын
im intrigued, can you put a small example on codesandbox or something?
@sergeibaskakov1014
@sergeibaskakov1014 Жыл бұрын
Hi! Thanks for the video, but I may have misunderstood the first reason because English is not my native language, but it doesn't matter which type of function declaration you choose, arrow or old-style declaration, in any case, hoisting won't work with const or let. That's why the first example is not quite true in your statement. The second reason is the main difference between the two function declarations, because the function call depends on the context in which this function is called.
@RyuBateson218
@RyuBateson218 Жыл бұрын
I love these cleaner code vids.
@christopherk4166
@christopherk4166 Жыл бұрын
Another game changing video! Thanks!
@appledore
@appledore Жыл бұрын
This is why I don't like JavaScript (especially in backend). Billions of ways to do a single thing is a double edged sword. Sure it allows more than one way to do a task. However, it adds unnecessary complexity to the codebase.
@matthewslyh4052
@matthewslyh4052 Жыл бұрын
Totally agree with you on this.
@weeb3277
@weeb3277 Жыл бұрын
I prefer to read a function definition first and then I look up how it's used, so the arrow functions don't pose a problem for me.
@redsnflr
@redsnflr Жыл бұрын
arrow functions inside functions (no "this" hoisting needed) & normal functions in the global scope is how I generally do things.
@NickCombs
@NickCombs Жыл бұрын
Nailed it
@user-pq1br4di8u
@user-pq1br4di8u Жыл бұрын
Really Nice video. Thanks for the clear explanation!
@HarshKapadia
@HarshKapadia Жыл бұрын
Woah! Thank you for this!
@quantumastrologer5599
@quantumastrologer5599 Жыл бұрын
Super helpful, thx!
@drrecommended4850
@drrecommended4850 Жыл бұрын
KYLE THANK YOU AS ALWAYS YOU ROCK
@-hero-5882
@-hero-5882 Жыл бұрын
Thanks bro, been distracting myself with code
@Palundrium
@Palundrium Жыл бұрын
Another reason some might prefer regular functions over arrow functions for callbacks is that you can name an anonymous regular function. Makes it a bit easier in a stack trace to quickly see the source of the error. Personally not for me, but I did occassionally find it useful when I had to write IE-compatible code back when callbacks were king and promises (let alone async await) weren't around yet. Thank god those days are gone.
@archmad
@archmad Жыл бұрын
you do realize you can do anonymous arrow function right? (() => { })()
@DavidZYW
@DavidZYW Жыл бұрын
1. Use function is more semantic 2. There is no need to use the arrow function to define the functions always in modern JavaScript or TypeScript, especially if the bundle file is not concatenated directly. 3. Because of the scope of the variables in the function, the use of 'function' is clearer. 4. Readable and Maintainable...
@JustinBarnard
@JustinBarnard Жыл бұрын
Everyone is entitled to their opinion, and if this works for you cool. But if code like you've written were to cross my path professionally on any team I've lead it worked on it'd get kicked back from code review. Hoisting can be a pain to debug if something goes wrong. And while you might not have a problem a jr dev who comes in behind might not be the same.
@trappedcat3615
@trappedcat3615 Жыл бұрын
Hoisting is a problem regardless of experience because it can lack reasoning why hoisting and not a constant arrow function was chosen.
@LarsRyeJeppesen
@LarsRyeJeppesen Жыл бұрын
I always prefer arrow functions. Only in classes it is not allowed.
@novanoskillz4151
@novanoskillz4151 Жыл бұрын
At work we just use modules for commonly used helper functions and import them. For things like onClick functions we use arrow functions defined at the top of the react file underneath the useState declarations.
@agent-33
@agent-33 Жыл бұрын
Use => for callbacks and single liner codes without { } and return. const sum = (a, b) => a + b;
@Jackinua
@Jackinua Жыл бұрын
Usually helpers grouped in some Object thus you will also have an error about initialization. Try to use hook document.load.
@vapeurdepisse
@vapeurdepisse Жыл бұрын
I'm with you on using the function keyword for its intended use of... functions. But I'm coming with a serious and long programming background in C-type language.
@portusdelphini
@portusdelphini Жыл бұрын
Abssollutely. Many devs make hype instead of correct usage
@alexandersage1850
@alexandersage1850 Жыл бұрын
This is really a personal preference situation. My brain likes consistency. It’s so difficult for my brain to process differing syntax for the same thing. If I have functions and arrow functions in the same code, then I start to loose track of what’s going on and have to put in more brain power. Its much easier to see => and know that what I have is 99% likely to be an arrow function. For context: I used to be an avid function hoister whenever possible. Context Edit: 1. I don’t used “this” often
@TheMetalMag
@TheMetalMag Жыл бұрын
Very interesting ! They teach to use arrow which to me is confusing
@nickroth1906
@nickroth1906 Жыл бұрын
1) Avoiding hoisting is a good thing. It's not a difficult concept to understand but one that has generally only added confusion and errors in JS. 2) If none of those functions are important, then why were they written? The example here is a case where it is both too trivial to support the argument AND a more complex example would be better done with modules, as others have noted.
@321sas
@321sas Жыл бұрын
Happy New Year Kyle! ❤
@royz_1
@royz_1 Жыл бұрын
I prefer the syntax of the normal functions. That's the main reason for me.
How To Learn JavaScript In 2023 - From Zero To Mid-Level Developer
14:18
Web Dev Simplified
Рет қаралды 119 М.
Why I Don't Use Else When Programming
10:18
Web Dev Simplified
Рет қаралды 1,2 МЛН
КТО ЛЮБИТ ГРИБЫ?? #shorts
00:24
Паша Осадчий
Рет қаралды 3,7 МЛН
Parenting hacks and gadgets against mosquitoes 🦟👶
00:21
Let's GLOW!
Рет қаралды 13 МЛН
OMG what happened??😳 filaretiki family✨ #social
01:00
Filaretiki
Рет қаралды 13 МЛН
WHO CAN RUN FASTER?
00:23
Zhong
Рет қаралды 46 МЛН
Top 6 React Hook Mistakes Beginners Make
21:18
Web Dev Simplified
Рет қаралды 569 М.
`const` was a mistake
31:50
Theo - t3․gg
Рет қаралды 134 М.
JavaScript Visualized - Event Loop, Web APIs, (Micro)task Queue
12:35
5 Signs of an Inexperienced Self-Taught Developer (and how to fix)
8:40
Arrow Functions JavaScript Tutorial - What NOT to do!!!
31:48
ColorCode
Рет қаралды 55 М.
STOP Using Classes In JavaScript | Prime Reacts
14:02
ThePrimeTime
Рет қаралды 235 М.
Your App Is NOT Secure If You Don’t Use CSRF Tokens
9:57
Web Dev Simplified
Рет қаралды 128 М.
WTF Do These Even Mean
13:44
Web Dev Simplified
Рет қаралды 84 М.
5 Must Know JavaScript Features That Almost Nobody Knows
18:06
Web Dev Simplified
Рет қаралды 475 М.
КТО ЛЮБИТ ГРИБЫ?? #shorts
00:24
Паша Осадчий
Рет қаралды 3,7 МЛН