pub unsafe extern "C" fn JS_DeletePropertyById1(
    cx: *mut JSContext,
    obj: Handle<*mut JSObject>,
    id: PropertyKey
) -> bool
Expand description

Delete a property, ignoring strict failures. This is the C++ equivalent of the JS delete obj[id] in non-strict mode code.