deleteProperty(_:)
Deletes the named property from the JavaScript object value.
Declaration
func deleteProperty(_ property: Any!) -> Boolfunc deleteProperty(_ property: String!) -> BoolParameters
- property:
The name of a property in the JavaScript object value.
Return Value
Discussion
Calling this method is equivalent to using the JavaScript delete operator on an object (for example, delete object.property). After deletion, attempting to retrieve the property’s value results in the undefined value, and any descriptor information that defines the property’s behavior (see the defineProperty(_:descriptor:) method or the JavaScript defineProperty function) is lost.