Es6
3 articles
Javascript
JavaScript WeakRef: The Feature You Probably Shouldn't Use
Most JavaScript developers go their entire careers without ever touching WeakRef. That is probably for the best. However, it is one of those corners …
Javascript
Deep dive into Object.freeze() in Javascript
According to MDN, the Object.freeze() static method freezes an object. Freezing an object prevents extensions and makes existing properties …
Javascript
Unlock the Power of ES6: Streamline JavaScript with Destructuring
What is destructuring assignment? The destructuring assignment syntax is a JavaScript expression that makes it possible to unpack values from arrays, …