[Home] > Snippets  > Browser  > DOM  >  Reload the current page

Reload the current page

JavaScript

const reload = () => location.reload()

// Or
const reload = () => (location.href = location.href)

TypeScript

const reload = (): void => location.reload()

// Or
const reload = (): string => (location.href = location.href)