JavaScript Basics: Object.freeze and Object.isFrozen

in #javascript6 years ago

In the previous posts, I discussed about two levels of object protection: Object.preventExtensions and Object.seal. The last level of protection is Object.freeze, which also makes all the properties unchangeable. You cannot add a new property, you cannot delete an existing property, you cannot reconfigure it, and you cannot change its value.

The following code snippet demonstrates the effects of Object.freeze:

    let myObj = {
        name: "Ali",
    };
    Object.freeze(myObj);
    
    console.log(Object.isFrozen(myObj)); // true

    // You cannot add new properties. This fails silently.
    myObj.age = 19;
    console.log(myObj.age); // undefined

    // You cannot reconfigure existing properties.
    try {
        Object.defineProperty(myObj, "name", {
            get() {
                return "Susan";
            },
        });
        console.log(myObj.name);
    } catch (e) {
        console.log(e); // TypeError: Cannot redefine property: name
    }

    // You cannot change property values.
    myObj.name = "Susan";
    console.log(myObj.name); // Ali
    try {
        Object.defineProperty(myObj, "name", {
            value: "Aria",
        });
        console.log(myObj.name); // Ali
    } catch(e) {
        console.log(e); // TypeError: Cannot redefine property: name
    }

    // You can add new properties to the prototype.
    myObj.__proto__.age = 14;
    console.log(myObj.age); // 14

    // You cannot change the prototype.
    try {
        Object.setPrototypeOf(myObj, {
            grade: 9,
        });
        console.log(myObj.grade);
    } catch (e) {
        console.log(e); // TypeError: #<Object> is not extensible
    }
    try {
        myObj.__proto__ = {
            grade: 9,
        };
        console.log(myObj.grade);
    } catch (e) {
        console.log(e); // TypeError: #<Object> is not extensible
    }

In short, Object.freeze prevents extensions to the object and makes all the existing properties non-configurable, and also prevents the values of the existing properties from being changed. In this way, the object becomes immutable.


Related Posts

Sort:  

well thanks for sharing .. learning

Nicely explained object.freeze. Keep it up.

JavaScript is a great program language.....and i like your post very much..... i waiting for your next post....i wish for your best of luck brother

Nice post about java script. Good work about programming. Upvote and resteem the post.

interesting, i do programming myself, but today i learned something, thanks

Informative content on Java, Thanks for sharing this post.

Sir would you please share a post about bitcoins price and future. Bcz its current value is less. Will it increase??

Thank you, @saddam1210. Personally, I think the price will increase, but I am not an expert in this field.

I followed u as a teacher.thnx for ur opinion

Very useful post for me. your post becomes more easier when you give an example like this. Thank you.

beshkaf boro jolo

.. ممنون از اشترک این پست، خصیصه ی مفیدی بنظر میاد
میشه گفت باعث افزایش امنیت میشه و سمت کلاینت به حفاظت از داده ها کمک میکنه؟

با تشکر از پاسخ ارزشمند شما. درسته، برای حفظ امنیت برنامه هست. البته چون اینها نسبتاً جدید هست، هنوز زیاد مورد استفاده قرار نگرفته.

Coin Marketplace

STEEM 0.30
TRX 0.12
JST 0.033
BTC 64534.17
ETH 3150.15
USDT 1.00
SBD 4.01