| |||||||||||||||
SummaryFinds a specified property and retrieves its value. | |||||||||||||||
SyntaxJSBool JS_GetProperty(JSContext *cx, JSObject *obj, const char *name, jsval *vp);
| |||||||||||||||
DescriptionJS_GetProperty examines a specified JS object, obj , its scope and prototype links, for a property named name . If the property is not defined on the object in its scope, or in its prototype links, vp is set to JSVAL_VOID .
If the property exists,
| |||||||||||||||
See Also
|