How to display the collection returned by get as comma separated values?
<div ng-repeat="val in cc.getRepeatingAttributeValues(col.name)">
<span class="value">{{val}}</span>
</div>
getRepeatingAttributesValues() returns ["Consumers","Contributors"] I want it to be displayed as
Consumer,Contributors