Javascript Once Running Redirect

The simplest way to solve this process is as follows. You can make a one-time redirect by typing a value in localStorage and checking it. For example;

if (!localStorage.getItem('first_visit')) {
    window.location.href = '/redirect-url'
    localStorage.setItem('first_visit', 1)
}
Comments

There are no comments, make the firs comment