Как перенаправить пользователя на любой конкретный URL -адрес с помощью JavaScript.

const redirect = url => location.href = url

/* call redirect (url) whenever you want to redirect the user to a specific url */
Combative Centipede