I want to create a list of items in my template, separated by commas, but I don't want the last item to have a comma:
one, two, three
How do I accomplish this with Angular 2's template syntax?
I want to create a list of items in my template, separated by commas, but I don't want the last item to have a comma:
one, two, three
How do I accomplish this with Angular 2's template syntax?
I like Eric's answer better (see his comment for a sample Plunker):
My original answer was to use the optional
index
in the NgFor microsyntax:An alternative is to use just use CSS
::before
syntax, as described here: https://stackoverflow.com/a/31805688/215945I think a simpler approach is