how to grab all the same tags in javascript code example
Example 1: dom get all tags
const allElements = document.getElementsByTagName("*");
const allTagNames = new Set([].map.call(allElements, el => el.nodeName.toLowerCase()));
Example 2: get all a tags javascript
document.anchors