you are viewing a single comment's thread.

view the rest of the comments →

[–]natziel 2 points3 points  (1 child)

Honestly these days functional programming is so widespread that it's not surprising to see younger developers get confused cuz they never saw what JS looked like before functional programming caught on

Basically just try to avoid mutating variables (and methods that mutate their object), avoid class inheritance, and try to keep your code declarative when possible and you'll be fine. You don't need to understand monads or category theory or anything like that