JSType

The values of the JSType enumeration represent the types of JavaScript values.

Value Description
JSTYPE_VOID The undefined value.
JSTYPE_OBJECT JavaScript objects.
JSTYPE_FUNCTION Functions.
JSTYPE_STRING Strings.
JSTYPE_NUMBER Numbers.
JSTYPE_BOOLEAN Boolean values, true and false.
JSTYPE_NULL The null value.
JSTYPE_SYMBOL Symbols.

See Also