This is a search for a code that searches inside the file and deletes the result, but if the result is repeated, it does not delete it.
function looop(){
let wel = document.querySelectorAll("h1"),
i;
if(wel) {
for(i=0; i < wel.length;++i) {
wel[i].remove();
};
};
};looop();