This is my array of actors:
[\'Elvis\', \'Jane\', \'Frances\']
How to pass this array within a query strin
Yo can simply do this by using JSON.stringify()
let params = new HttpParams(); const actors = ['Elvis', 'Jane', 'Frances']; params.append('actors', JSON.stringify(actors); this.http.get(url, { params: params });