Como voltar a guia antiga fechando a nova guia em JS
localStorage.setItem('isRealdAble','false');
function gCFRTP() {
setInterval(() => {
var isReloading = localStorage.getItem('isRealdAble');
if(isReloading=='true'){
window.location.href = window.location.href;
}
}, 2000);
}
Homely Hamerkop