| ||||||||||||
SummaryConverts a JS value to a JS ID. | ||||||||||||
SyntaxJSBool JS_ValueToId(JSContext *cx, jsval v, jsid *idp);
| ||||||||||||
DescriptionJS_ValueToId converts a specified JS value, v , to a JS ID. If v already contains a JS_INT value, idp is set to point at v . Otherwise, JS_ValueToId attempts to generate an ID value based on the current value of v .
The converted value is stored in the
| ||||||||||||
See Also
|