Angular - HTTP Client
Given this Angular interceptor code snippet, what will be the Authorization header value in the outgoing HTTP request if the token is 'abc123'?
intercept(request: HttpRequest, next: HttpHandler) { const token = 'abc123'; const cloned = request.clone({ headers: request.headers.set('Authorization', `Bearer ${token}`) }); return next.handle(cloned); }
