which returns getElementByTagName('body')
, according to:
1) Specifying the index 0
Bring back ? with all the content and therefore all the tags within body or just the body tag itself?2) Without specifying the index? , the same structure as before.
3) In the case of specifying the index [0] and [1] at the same time, it means:
getElementByTagName('body')[0][1]
,
what happens?