Cara Menghentikan Browser Back JS History.Pushstate

history.pushState(null, null, null);
$(window).on("popstate", function (event) {
  if (!event.originalEvent.state) {
    history.pushState(null, null, null);
    return;
  }
});
MM.Mirzaei.Dev