#javascript
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...
It's not about the interview, it's about the knowledge! · A while back I posted about the pitfalls of cramming for a coding interview, the problem with...
@thebarefootdev's JavaScript tips · With ES6 syntax, working with arrays has never been easier. The spread operator in particular allows a much cleaner...
A Barebones introduction to functional programming for mere mortals · In part 1 of this overview, we looked briefly at the character of the functional...