pub unsafe extern "C" fn JSObjectGetProperty(
ctx: JSContextRef,
object: JSObjectRef,
propertyName: JSStringRef,
exception: *mut JSValueRef,
) -> JSValueRef
Expand description
Gets a property from an object.
ctx
: The execution context to use.object
: TheJSObjectRef
whose property you want to get.propertyName
: AJSStringRef
containing the property’s name.exception
: A pointer to aJSValueRef
in which to store an exception, if any. PassNULL
if you do not care to store an exception.
Returns the property’s value if object has the property, otherwise the undefined value.