This is my array of actors:
[\'Elvis\', \'Jane\', \'Frances\']
How to pass this array within a query strin
You can do the following:
this.http.get(url, { params: { "actors[]": actorsArray } });