Jak pokazać stronę HTML tylko raz

if (localStorage.getItem("visited")) {
    window.location.href = "webPlatform.html";
}
localStorage.setItem("visited", "true");
Zeevx