ES6 Proxies in Practice
A proxy is an object that wraps an object or a function and monitors access... (more…)
Read more »Singletons are fairly controversial as far as I can tell, especially in Javascript programming. Let’s take a look at what they are, when to (maybe) use them, and when not to. What is a Singleton? A singleton is a class that allows only a single instance o… Read more