#programming-tips
Read more stories on Hashnode
Articles with this tag
A fun little challenge, try to do it as little code as possible! · Just a fun little challenge I made for myself when figuring out a wider solution for...
Demystifying the closure in one go!. · function countFactory(isIncrement, start){ return function(){ return isIncrement ? start += 1 :...
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...