Routing
History
Push State / Replace State
pushState(state, unused, url)
window.history.replaceState(
{test:3},
"",
"https://developer.mozilla.org/en-US/docs/Web/API/History/replaceState?diu=3"
);
// get back the state
console.log(history.state);
// {test:3}Location
Information
Method
Last updated