JS-Historyオブジェクト
// # プロパティ
console.log(history.legth);
console.log(history.scrollRestoration);
console.log(history.state);
// # メソッド
// history.back();
// history.forward();
// history.go();
history.pushState(state, titel, url);
history.replaceState(state, title, url);