| |||||||||
SummaryDetermines the JS data type of a JS value. | |||||||||
SyntaxJSType JS_TypeOfValue(JSContext *cx, jsval v);
| |||||||||
DescriptionJS_TypeOfValue examines a specified JS value, v , and returns its JS data type. The return value is always one of JSTYPE_VOID , JSTYPE_OBJECT , JSTYPE_FUNCTION , JSTYPE_STRING , JSTYPE_NUMBER , or JSTYPE_BOOLEAN .
| |||||||||
See Also
|