Going back to the HOME Page by clearing the routing history is my requirement
I have tried with below code. But all codes shown below didn't met my requirement.
this.router.navigate(['/services/paymentProcessing'], { skipLocationChange: true });
ngOnDestroy(): void {
window.history.go(-4);
this.location.back();
this.router.navigate(['/services/#SH']);
}
I need to go back to Home Page/particular page from my specific page by clearing the routing history. Can anyone let me know the solution