I want to show it all inside HTMLCollection {}. What should I do?
Hmmm so I see two possible meanings to your question:
a) You want all your li tags to show up: Make your html have <li></li>
li
<li></li>
b) You want all your tags to show up: Use document.getElementsByTagName('*')
document.getElementsByTagName('*')
@a5rocksI just want it to display like that
I want to show it all inside HTMLCollection {}. What should I do?

Hmmm so I see two possible meanings to your question:
a) You want all your
li
tags to show up: Make your html have<li></li>
b) You want all your tags to show up: Use
document.getElementsByTagName('*')
@a5rocks

I just want it to display like that