Is the matrix url notation the \"default\" to creating urls with parameters or is better to use the \"old\" notation with ? and &. I didn\'t understand it on the angular
For matrix parameters you can also subscribe to params instead of peeling them out of url.
this.paramSubscription = this.activeRoute.params.subscribe(params => { const bar = params['bar']; const baz = params['baz']; });