Redirects to a specified URL.
Window.location.href
or Window.location.replace()
to redirect to url
.true
- default) or an HTTP redirect (false
).const redirect = (url, asLink = true) =>
asLink ? (window.location.href = url) : window.location.replace(url);
redirect('https://google.com');
Would you like to help us improve 30 seconds of code?Take a quick survey
JavaScript, Browser
Creates an object containing the parameters of the current URL.
JavaScript, Browser
Renders the given DOM tree in the specified DOM element.
JavaScript, Browser
Creates a new MutationObserver
and runs the provided callback for each mutation on the specified element.