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…