• 0 Posts
  • 7 Comments
Joined 1 year ago
cake
Cake day: June 20th, 2023

help-circle






  • marwwin@suppo.fitoProgrammer Humor@lemmy.mlI like Python def
    link
    fedilink
    arrow-up
    32
    arrow-down
    1
    ·
    9 months ago

    Arrow functions should be used only for callbacks. I hate that people has started defining named functions with arrow functions in JS. Arrow functions are not hoisted and the ordering of your functions is going to get wonky, because you need to define all you functions first before composing them, when it should be the other way around. Start with the most high-level function which calls lower level functions.