Example of usage:

```js
const str = arrayToCsvString([{a: 1, b: 2}, {b: 3, c: 4}]);
console.log(str);
```

Returns the string:

```csv
a,b,c
1,2,
,3,4
```