I am trying to learn Javascript debugging in the Chrome Javascript console. However, I do not understand how the console displays the data type of the object. For example, in the Javascript Console, it shows this:

In this figure, I am using jQuery. I tried to do console.logfor several variables, but how do I know if a particular variable is a jQuery object or a raw DOM object? Is it HTMLDivElementeither another that shows the tag divspecified in the console, a jQuery object, or a raw DOM object?
In general, how do I know the data type of an object or variable in Javascript in the debugger console, like the Chrome Javascript console? In languages such as Java, the variable data type is clearly displayed in the debugger; I can find out from the debugger which object the variable is, be it an instance Class Aor an instance Class B, etc.
source
share