I am looping my data list and displaying in the view in spans :
<span *ngFor="let d of myData"> {{d.name}} ,</span>
As you can see , I am adding a comma ',' in the end of every item to obtain a coherent view
this results my in this appearance :
AAA,BBB,CCC,DDD,
My problem is with **the last comma which I want to automatically remove.
Suggestions ?