Defaults in function parameters is a feature that simplified my code a lot. But there is one caveat that we need to be aware of! Let’s start with an example:
Continue reading “Tip: Watch out for null in default params”Tag: es6
Partial Application made easy with ES6
In this post I will present a quick example on how ES6 can improve readability and help build code that is easier to maintain.
Also, I will be exploring partial application, a nice technique to keep in your developer toolbox.