18 March, 2014. It was a Tuesday. Every now and then I need to have a method support 2 or 3 arguments, providing a default value for one of them if only 2 are specified. My typical solution is to ...
Currying is a very powerful concept in functional programming. Once you understand how it works and what is does you won't be able to live without it anymore. I first read about currying 5 years ago, ...
Stop using string concatenation to handle query params in JavaScript! 👉Use the URLSearchParams interface and its methods to easily manipulate query params. Forget about manual parsing errors and ...