Aditya Dandnebimori.hashnode.dev·Sep 5, 2024Get Uniquly Filtered Data Via Inspect Consoleconst anchorTags = document.querySelectorAll('a'); const filteredLinks = []; const memberIds = new Set(); anchorTags.forEach(anchor => { const href = anchor.getAttribute('href'); if (!href || !href.startsWith("https://")) return; // Skip invalid link...Discussahref