#functional-programming
Read more stories on Hashnode
Articles with this tag
Recently I wrote an article about applying Functional Programming to Domain-Driven Design. One of the key benefits of that approach is improved...
Domain-Driven Design (DDD) simplifies the development and maintenance of complex software applications. However, two seminal books on the topic,...
Make your code readable with this definitive guide to best practices for using each function. ยท In JavaScript, Array.prototype.map,...
In some languages such as Java, methods or functions can provide type information about the Exceptions or Errors they may throw. However in...
Singletons are commonly used in Object Oriented Programming when we want to enforce that there is only ever a single instance of a class. This might...
If you write functional code, you will encounter problems where a recursive algorithm is an appropriate solution. However, if you've come from an...