Skip to content

Instantly share code, notes, and snippets.

@Ritik5Prasad
Created June 27, 2022 10:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ritik5Prasad/efc235e4d65cde07ec9746c4eac8021a to your computer and use it in GitHub Desktop.
Save Ritik5Prasad/efc235e4d65cde07ec9746c4eac8021a to your computer and use it in GitHub Desktop.
From Github
let addItem = (name,address,gender,phone) => {
database().ref('/items').push({
name: name,
address:address,
gender:gender,
phone:phone
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment