this post was submitted on 18 Jun 2023
12 points (100.0% liked)
React
935 readers
1 users here now
A community for discussing anything related to the React UI framework and it's ecosystem.
Wormhole
Icon base by Skoll under CC BY 3.0 with modifications to add a gradient
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Not a stupid question at all.
Other than the syntax, there is a very important functional difference between the two: function definitions are hoisted, consts are not. What this means in practice is that you can use a function you define later in the file if it's defined using the
function f() { ... }
syntax, butconst f = () => { ... }
functions can only be used after their definitions.Personally, I like breaking up React components into smaller helper subcomponents and use them in a main component. I only export the main component, the helpers are private to the module. For better readability, I like the main component to be at the top of the file and then put the helpers in decreasing order of complexity. This style is only possible with classic function definitions, using consts forces you to use bottom-up instead of top-down order.
Thank you! I remember reading a bit about this but clearly it didn't stick! Thank you for the awesome explanation!
That is a really nice explanation, thank you!