Angular - Routing
Consider this route setup:
What URL will match this route and pass the parameter
const routes = [
{ path: 'user/:id', component: UserComponent }
];What URL will match this route and pass the parameter
id as '42'?