Entry: JS_TypeOfValue (Function)
Summary: Determines the JS data type of a JS value.
Syntax:
JSType JS_TypeOfValue(JSContext *cx, jsval v);
Argument Type Description
cx JSContext * Pointer to a JS context from which to derive runtime information.
v jsval The JS value to examine.
Description:
JS_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:
|
|
|