Enumeration RuntimeType

An enum representing the possible values returned by getRuntimeType. These values are similar to the output of the built-in typeof operator except that this includes new types array and null, that typeof does not have, which are both distinct from object.

Enumeration Members

Array: "array"

This is not included in RuntimeType.Object. (Compared to typeof which does include null in the 'object' type.)

Bigint: "bigint"
Boolean: "boolean"
Function: "function"
Null: "null"

This is not included in RuntimeType.Object. (Compared to typeof which does include null in the 'object' type.)

Number: "number"
Object: "object"
String: "string"
Symbol: "symbol"
Undefined: "undefined"