pub unsafe extern "C" fn JSObjectDeleteProperty(
ctx: JSContextRef,
object: JSObjectRef,
propertyName: JSStringRef,
exception: *mut JSValueRef,
) -> boolExpand description
Deletes a property from an object.
ctx: The execution context to use.object: TheJSObjectRefwhose property you want to delete.propertyName: AJSStringRefcontaining the property’s name.exception: A pointer to aJSValueRefin which to store an exception, if any. PassNULLif you do not care to store an exception.
Returns true if the delete operation succeeds, otherwise false
(for example, if the property has the kJSPropertyAttributeDontDelete
attribute set).