i have the following values stored in $scope in Angular
$scope.tags = [
{ text: '<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="dbafbea8af9bafbea8aff5b8b4b6">[email protected]</a>' },
{ text: '<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="3f4b5a4c4b0e7f4b5a4c4b115c5052">[email protected]</a>' },
{ text: '<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="4a3e2f393e780a3e2f393e64292527">[email protected]</a>' },
{ text: '<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="3d49584e490e7d49584e49135e5250">[email protected]</a>' }
];
I want to concatenate these emails:
[email protected], [email protected], [email protected], [email protected]
I am attempting to send multiple emails at once.
Can I achieve this without using a loop, is there an alternative method?
Thank you