I am trying to merge two arrays and have a separator included between all values (comma). I tried this:
var aAndBWithCommasInBetween = a.concat(b);
But that leads to:
DealerOrigin
instead of:
Dealer, Origin
each a and b can have many values or none.