Intro In June 2023 I explored intermediate functional programming patterns in JavaScript. That article gave the following kinds of functional programming: Personally I’ve come to the - somewhat incremental but somewhat not - kinds of functional programming: Declarative data transformations: someArray.map( (x) => x+ 1): much better than a for loop…| blog.wilcoxd.com
Intro Functional programming means different things to different people. Personally I’ve come to the - somewhat incremental but somewhat not - kinds of functional programming: Declarative data transformations: : much better than a for loop, especially as you add primitives like filter or select into the mix. Build on the provided blocks! Traversal…| blog.wilcoxd.com