| |||||||||
SummaryRemoves all properties associated with an object. | |||||||||
Syntaxvoid JS_ClearScope(JSContext *cx, JSObject *obj);
| |||||||||
DescriptionJS_ClearScope removes all properties and elements from obj in a single operation. To remove a single property from an object, call JS_DeleteProperty , and to remove a single array object element, call JS_DeleteElement .
| |||||||||
See Also
|