What does the Angular router's ActivatedRoute paramMap provide?
- A An Observable of the route's path parameters
- B A static object of query strings
- C The list of all routes
- D The parent component instance
Answer
An Observable of the route's path parameters
paramMap is an Observable because a component may be reused when only the parameter changes, in which case it is not recreated.





