The from read-only property of the NavigationCurrentEntryChangeEvent interface returns the NavigationHistoryEntry that was navigated from.
A NavigationHistoryEntry object.
navigation.addEventListener("currententrychange", (event) => {
console.log(event.from);
});