Skip to content

Instantly share code, notes, and snippets.

View danswater's full-sized avatar
🎯
Focusing

Francis Kennet Lamayo danswater

🎯
Focusing
View GitHub Profile
@danswater
danswater / gist:b9c51bb28193661bb2da
Created October 3, 2014 02:55
Retrieving data in angularfire .$asArray()
// userservice promise
userService.$loaded().then( function ( c ) {
angular.forEach( c, function ( e ) {
console.log( e );
} )
} );