Object
The typeof operator will return a string that tells you the data type.
var college={};
typeof college
"object"
typeof "hello"
// returns "string"
typeof true
// returns "boolean"
typeof [1, 2, 3]
// returns "object" (Arrays are a type of object...
successo.hashnode.dev3 min read