To prevent modifications to an object’s prototype, the _________ method can be used to seal the prototype.
- Freeze
- Seal
- PreventExtensions
- Protect
The seal method in JavaScript can be used to prevent any further addition or deletion of properties on an object, including its prototype. This ensures that the prototype remains fixed and cannot be modified.
Loading...
Related Quiz
- To handle errors in an async function, you should use a try...catch __________.
- What happens to the entries in a WeakMap when there are no other references to the key?
- Can a Symbol be automatically converted to a string when concatenated with a string?
- Dynamic imports are especially useful for __________ loading of modules.
- In ES6, class properties are often initialized inside the ________ method.