JavaScript Object.isExtensible()
- Previous page groupBy()
- Next page isFrozen()
- Go back to the previous level JavaScript Object Reference Manual
Definition and usage
Object.isExtensible()
The method is used to check if an object is extensible. If the object is extensible, it returns true.
Related methods:
Object.preventExtensions()
Modification is allowed, but addition of properties is prevented.
Object.seal()
Modification is allowed, but addition and deletion of properties are prevented.
Object.freeze()
Prevent 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"}; // Prevent extension Object.preventExtensions(person); // This will return false let answer = Object.isExtensible(person);
Example 2
// Create an array const fruits = ["Banana", "Orange", "Apple", "Mango"]; // Prevent extension Object.preventExtensions(fruits); // This will return false let answer = Object.isExtensible(fruits);
Syntax
Object.isExtensible(object)
Parameter
Parameter | Description |
---|---|
object | Required. The object to be checked. |
Return value
Type | Description |
---|---|
Boolean | Returns true if the object is extensible, otherwise returns false. |
Browser support
Object.isExtensible()
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 groupBy()
- Next page isFrozen()
- Go back to the previous level JavaScript Object Reference Manual