<a id="test"></a> <script> var test = $('#test'); console.log(test); console.log(test[0]); </script> I request the contents of the test selector twice, in the second case with the index 0. In the picture that issued the console. What is this "phenomenon" called - you can get the html-format only by assigning an index (or is it not an index?), And what is the presentation in the first case?
