Angular - Routing
Given this code snippet, what will be logged if the URL is '/products?page=2#details'?
this.route.queryParams.subscribe(params => console.log(params.page)); this.route.fragment.subscribe(frag => console.log(frag));
