@thebarefootdev
All things Software Dev & Architecture

All things Software Dev & Architecture

Follow
homebadgesnewsletter
Tag

Functional Programming

#functional-programming

More content

Read more stories on Hashnode


Articles with this tag

JavaScript closure illustrated in one example

Jun 7, 20211 min read 109 views

Demystifying the closure in one go!. · function countFactory(isIncrement, start){ return function(){ return isIncrement ? start += 1 :...

JavaScript closure illustrated in one example

Counting items in a JavaScript Array with reduce

May 31, 20214 min read 993 views

The simplicity of the reduce method · I am a functional programming fan, and I strive for purity and simplicity wherever I can. I especially love the...

Counting items in a JavaScript Array with reduce

Foundational functional programming, part II

May 14, 20219 min read 98 views

A Barebones introduction to functional programming for mere mortals · In part 1 of this overview, we looked briefly at the character of the functional...

Foundational functional programming, part II

Foundational functional programming, part I

May 7, 20217 min read 112 views

A Barebones introduction to functional programming for mere mortals · The return of the once-popular Functional programming (FP) is a well-discussed area...

Foundational functional programming, part I