My collection has the following structure
https://i.sstatic.net/FZIqt.png
Is there a way to access properties with different names within a collection?
I attempted it this way:
for(i=0;i<$scope.users.length;i++)
{
console.log($scope.users[i].google|facebook.email);
}