There are many ways to lock an object according to your needs. The Object
object (despite the redundancy), has some useful functions that will allow you to lock objects.
Object.freeze
Object.seal
Object.preventExtensions
For all the examples in this post, we'll use the following object :
Object.freeze
Freeze method freezes an object (thanks captain obvious).
This method prevents new properties from being added to it, prevent existing properties from being removed and prevents existing properties (or their enumerability, configurability, or writability) from being changed. In essence the object is made immutable. The method returns the frozen object.
Note that you freeze only the object as first parameter. If a value of the frozen object is an object it can still be modified, unless you freeze them too. If you try to modify myBankAccount.user
, you'll be able to add properties inside of that object.
Object.preventExtensions
The preventExtensions method prevents new properties from ever being added to an object (i.e. prevents future extensions to the object).
Object.seal
Seal method seals an object, preventing new properties from being added to it and marking all existing properties as non-configurable. Values of present properties can still be changed as long as they are writable.
Quick comparison and notes
Function | Object is made non-extensible | configurable is set to false for each property |
---|---|---|
Object.preventExtensions | Yes | No |
Object.seal | Yes | Yes |
Object.freeze | Yes | Yes |
- The subobjects of a frozen object are modifiables unless you freeze them.
- The prototype chain using
Object.seal
remains untouched. However, the__proto__
property is sealed as well. - Properties can still be added to the object prototype. However, calling
preventExtensions
on an object will also prevent extensions on its__proto__
property.
The Object variable has useful method to check if any of the previous functions has been used on an object :
Object.isFrozen(myObj)
.Object.isSealed(myObj)
.Object.isExtensible(myObj)
.
Unless you're working with strict mode in your code ('use strict';
) no errors will be thrown in the console as everything will be silently ignored. However in strict mode, you'll get Type Errors
if you try to accomplish task as add a property in a non extensible object etc.
Prevent a variable from being accesible in the console
If you're scared that someone could check out your code and modify things in the console, just wrap your code inside an anonymous function. That will prevent from appearing in the console, so other developer wouldn't be able to access the code that way.
Analize the following code :
If you include this code inside your document, and someone decides to read the code of that files, they could find and execute the following in the console because MySuperBankObject object is exposed globally :
And nobody wants that, do you? To prevent this, (although the code can be visible in the browser, it can't be modified) wrap the previous code in an anonymous function:
Now wrap the previous inside an anonymous function :
Useful isn't? If a developer try to get mySuperBankObject in the console, he'll face that :
The code will work as expected, but the variables are not exposed in the console anymore. Note too that the code still being readable by a developer, although can't be modified easily it stills being modified if your code has weak points (getters and setter misconfigured i.e a stupid global function as getMySuperBankObject
...) and with the enough knowledge. Minify your code to decrease the readability.
Finally, please don't handle a bank account with some code like the posted in this post, thanks !.
Have fun
0 Comments