pub unsafe extern "C" fn JSObjectGetPropertyForKey(
ctx: JSContextRef,
object: JSObjectRef,
propertyKey: JSValueRef,
exception: *mut JSValueRef,
) -> JSValueRefExpand description
Gets a property from an object using a JSValueRef as the property key.
ctx: The execution context to use.object: TheJSObjectRefwhose property you want to get.propertyKey: AJSValueRefcontaining the property key to use when looking up the property.exception: A pointer to aJSValueRefin which to store an exception, if any. PassNULLif you do not care to store an exception.
The property’s value if object has the property key, otherwise the undefined value.
This function is the same as performing object[propertyKey] from JavaScript.