I want to do a ng-repeat on an array which is composed of two arrays, like this :
[titles: [], links: []]
My arrays (titles and links) have the same length What i want to print in my ng-repeat, finally, is anything like that :
{{ array.title }}
{{ array.link }}
For example, in a C program i have to do that :
int i;
i = 0;
while (titles[i])
{
printf("%s - %s", titles[i], links[i]);
i++;
}