Pretty new to angular so maybe I'm missing something obvious. I have a model with collection of objects with own properties; and I'm trying to create a csv value out of Text property of that object. I've tried few things and got it to work with both ng-repeat and by calling a function. However what I thought was the most straight forward way of doing this is not quite working.
{{item.Keywords.map(function (kw) { return kw.Text; }).join(', ')}}
In this example join works just fine (i see object separated by commas), however when combined with map it's unable to interpret it and just prints out it as is. Is there a trick to using map that I'm missing?