Тёмный
No video :(

Object.freeze vs Object.seal in JavaScript | JavaScript interview Guide 

Code Pro
Подписаться 2,7 тыс.
Просмотров 6 тыс.
50% 1

ECMAScript 5 introduced new Object methods to Javascript. Among them seal, freeze, preventExtensions which can be used to make any object immutable.
So let see what does it exactly these methods will do and what are the differences between each of them.
Object.freeze()
The Object.freeze() method freezes an object. This is actually the most strict way of making objects immutable. It does the following things
prevents adding new properties
doesn’t allow remove existing properties
doesn't allow to change immediate properties of object
attributes of child objects can be modified
The result of calling Object.freeze(object) only applies to the immediate properties of object itself and will prevent future property addition, removal or value re-assignment operations only on object .
Even we can freeze the arrays in JavaScript by using Object.freeze()
With sealing, the situation is a little bit different, The Object.seal() method seals an object, preventing new properties from being added to the object. It does the following things
allows changing existed properties of an object
prevents adding new properties
don’t allow remove existing properties
An object called by this method can not have any new properties being added or current properties deleted.
Object.preventExtensions()
The Object.preventExtensions() method prevents new properties from ever being added to an object (i.e. prevents future extensions to the object). It does the following things
allows changing existed properties of an object
prevents adding new properties
Object.preventExtensions() marks an object as no longer extensible, so that it will never have properties beyond the ones it had at the time it was marked as non-extensible.
All three methods deal with the object’s immutability, which restricts adding new properties to it.

Опубликовано:

 

4 июл 2020

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 6   
@srikanthganta6384
@srikanthganta6384 2 года назад
Firs time I used Playback speed 0.75x
@roopasreevuddagiri7173
@roopasreevuddagiri7173 2 года назад
Please be in sync with what you are showing
@manojhk7469
@manojhk7469 4 месяца назад
everything is ok except speed
@mrvssoft5665
@mrvssoft5665 2 года назад
This is very fast video
@parvathinair3633
@parvathinair3633 3 года назад
Can you speak more slower than this? 🙄
Далее
Actual use case for JavaScript PROXY!
13:09
Просмотров 12 тыс.
Это iPhone 16
00:52
Просмотров 630 тыс.
ELA NÃO ESPERAVA POR ISSO 🥶 ATTITUDE #shorts
00:20
Why The Windows Phone Failed
24:08
Просмотров 234 тыс.
Why Signals Are Better Than React Hooks
16:30
Просмотров 467 тыс.
Every React Concept Explained in 12 Minutes
11:53
Просмотров 526 тыс.