Explore >> Select a destination


You are here

www.aryweb.nl
| | codewithstyle.info
4.2 parsecs away

Travel
| | In previous posts we've discussed how to deal with arrays in a functional way. We've learned about an important concept in Functional Programming: hig
| | blog.mgechev.com
4.7 parsecs away

Travel
| | Note: The following blog post is based on the library aspect.js, which can be found here. The object-oriented programming paradigm is powerful. We design an OO system by decomposition of the problem domain, following guiding principles concerning the decomposition and the communication between the different modules. The process is structured; it involves logical thinking, understanding of the domain and eventual predictions for the future evolution of the system. Often we're trying to keep our code DRY (...
| | dmitripavlutin.com
4.8 parsecs away

Travel
| | A pure function always returns the same value for the same arguments and produces no side effects.
| | blog.jcoglan.com
21.3 parsecs away

Travel
| [AI summary] The article discusses the challenges of handling named arguments in JavaScript, particularly focusing on the limitations of using object literals and the issues arising from modifying Object.prototype. It explores various approaches to validate and handle optional arguments, including the use of checkOptions() function to detect unknown properties, while considering the implications of inherited properties and the safety of Object.prototype modifications. The article emphasizes the importance of distinguishing between own properties and inherited ones to ensure robust and safe API design.