The objIsSealed() method determines if an object is sealed. An object is sealed if it is not
extensible and if all its properties are non-configurable (but potentially still writable).
Parameters
obj: any
The object to check if it is sealed.
Returns boolean
A Boolean indicating whether or not the given object is sealed.
The
objIsSealed()
method determines if an object is sealed. An object is sealed if it is not extensible and if all its properties are non-configurable (but potentially still writable).