JavaScript Object.isFrozen()
- Previous page isExtensible()
- Next page isSealed()
- Go back to the previous level JavaScript Object Reference Manual
Definition and Usage
Object.isFrozen()
This method is used to check if an object is frozen. If the object is frozen, it returns true.
Related methods:
Object.preventExtensions()
Modification is allowed, but adding properties is prevented.
Object.seal()
Allows modification but prevents addition and deletion of properties.
Object.freeze()
Prevents modification, addition, and deletion of properties.
Object.isExtensible()
Returns true if the object is extensible.
Object.isSealed()
Returns true if the object is sealed.
Object.isFrozen()
Returns true if the object is frozen.
Instance
Example 1
// Create an object const person = {firstName: "Bill", lastName: "Gates"}; // Freeze the object Object.freeze(person); // This will return true let text = Object.isFrozen(person);
Example 2
const fruits = ["Banana", "Orange", "Apple", "Mango"]; Object.freeze(fruits); // This will return true: let answer = Object.isFrozen(fruits);
Syntax
Object.isFrozen(object)
Parameter
Parameter | Description |
---|---|
object | Required. The object to be checked. |
Return value
Type | Description |
---|---|
Boolean | Returns true if the object is frozen, otherwise returns false. |
Browser support
Object.isFrozen()
Is a feature of ECMAScript5 (ES5).
Since July 2013, all modern browsers have fully supported ES5 (JavaScript 2009):
Chrome | Edge | Firefox | Safari | Opera |
---|---|---|---|---|
Chrome 23 | IE/Edge 11 | Firefox 21 | Safari 6 | Opera 15 |
September 2012 | September 2012 | April 2013 | July 2012 | July 2013 |
- Previous page isExtensible()
- Next page isSealed()
- Go back to the previous level JavaScript Object Reference Manual