Object.freeze: Immutable Objects
One of my favorite part of JavaScript has always been mutability of objects. I loved that MooTools and likewise frameworks could modify native prototypes to enhance them with functionality we knew the language need; in fact, I credit MooTools with pushing the web forward.
There are cases, however, where you don't want an object to be modifiable; you don't want values for existing properties to be changed, added, or removed. That's where Object.freeze
can help -- with Object.freeze
you can create immutable objects you can trust!
const obj = Object.freeze({
x: 1,
y: 2
});
// None of these do anything
obj.x = 8; // { x: 1, y: 2}
delete obj.x; // { x: 1, y: 2}
obj.z = 3; // { x: 1, y: 2}
Object.freeze
is a welcomed addition to JavaScript and a necessary one. If you have objects whose integrity you want to secure, immutability is required. Object.seal
provides similar functionality without the ability to freeze values, so Object.freeze
is your best choice when you want to lock down an object!
![Page Visibility API]()
One event that's always been lacking within the document is a signal for when the user is looking at a given tab, or another tab. When does the user switch off our site to look at something else? When do they come back?
![9 Mind-Blowing Canvas Demos]()
The <canvas>
element has been a revelation for the visual experts among our ranks. Canvas provides the means for incredible and efficient animations with the added bonus of no Flash; these developers can flash their awesome JavaScript skills instead. Here are nine unbelievable canvas demos that...
![Element Position Swapping Using MooTools 1.2]()
We all know that MooTools 1.2 can do some pretty awesome animations. What if we want to quickly make two element swap positions without a lot of fuss? Now you can by implementing a MooTools swap() method.
MooTools 1.2 Implementation
MooTools 1.2 Usage
To call the swap...
![Web Notifications API]()
Every UI framework has the same set of widgets which have become almost essential to modern sites: modals, tooltips, button varieties, and notifications. One problem I find is each site having their own widget colors, styles, and more -- users don't get a consistent experience. Apparently the...
It’s good to remind that
Object.freeze
does only shallow freeze.That’s a nice feature. Much needed. However, I hope the browser support is good.
Should I remind that MooTools’ practice to extend native prototypes prevented W3C to use well-known names like
contains
andflatten
, because it would have literally broken the web?Extending native prototypes is the last thing you’d want in a general purpose library.