Skip to content

Instantly share code, notes, and snippets.

@danswater
Created October 3, 2014 02:55
Show Gist options
  • Save danswater/b9c51bb28193661bb2da to your computer and use it in GitHub Desktop.
Save danswater/b9c51bb28193661bb2da to your computer and use it in GitHub Desktop.
Retrieving data in angularfire .$asArray()
// userservice promise
userService.$loaded().then( function ( c ) {
angular.forEach( c, function ( e ) {
console.log( e );
} )
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment