Is functional programming in JS really worth it?
Dec 4, 2020 路 3 min read 路 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 =...
Join discussion