I\'m trying to test out Firebase to allow users to post comments using push. I want to display the data I retrieve with the following;
push
fbl.child
I did this by prepend.
query.orderByChild('sell').limitToLast(4).on("value", function(snapshot){ snapshot.forEach(function (childSnapshot) { // PREPEND }); });