Angular - HTTP Client
Given the code below, what will be the final URL requested?
const params = new HttpParams().set('page', '2').set('sort', 'name');
this.http.get('/api/items', { params }).subscribe();