I have an object that I want to push to the firebase realtime database, looking like this:
userProfile = { name: \"Jon\", age: 25, gender: \"male\", ...plenty mo
The answer could not be easier, but in case someone else stumbles across the same issue:
firebase.database().ref('/userProfile').push(userProfile)
Thanks guys