angular router.navigate secondary router with params code example
Example 1: angular on back skip routes
this.router.navigate(["/c"], { replaceUrl: true });
Example 2: this.router.navigate
<a [routerLink]="['/', 'red-pill', {x: 'white-rabbit'}, 'neo']">
Param!
</a>