[Home] > Snippets  > Browser  > DOM  >  Redirect to another page

Redirect to another page

JavaScript

const goTo = (url) => (location.href = url)

TypeScript

const goTo = (url: string): string => (location.href = url)