I created such an array of such users -
var ref = new Firebase(FIREBASE_URL + '/users'); var users = $firebaseArray(ref);
I added objects to this, and I want to skip each of the users in this array. I know this is possible in the view using ng-repeat, but I need to do this in the controller. I tried -
angular.forEach(users, function(user) { console.log(user); })
But I do not get from this result.
angularjs firebase angularfire
Ire Aderinokun
source share