When I send a fetch request to an API, I receive a response that is an array of JSON objects, for example:
[ {"key":"val", "k2":"v2"}, {"k3":"v3", "k4":"v4"} ]
Currently, I am handling this by using response => response.text()
Is there a more efficient way to parse this array into separate JSON objects, instead of manually parsing it as one large string?