Javascript - Operators - Type


Operator Description Example
typeof Returns the type of a variable
typeof str_var; // "string"
instanceof Returns true if an object is an instance of an object type
auto instanceof Car; // true