I think a better way is to change the model dynamically. For example, if you are using JavaScript:
model['items'][ model['items'].length - 1 ].last = true;
and in your template, use inverted section:
{{#items}}
{{name}}{{^last}}, {{/last}}
{{/items}}
to render that comma.