Is functional programming in JS really worth it?
I admit that I am still at the beginning of my FP journey, but it's examples like these that make me sceptical about the whole FP hype which is consuming the JS world.
Imperative isOdd:
const isOdd = n => n%2 === 1;
Imperative isEven:
const isEven =...
navicstein.hashnode.dev3 min read