Guest User

Untitled

a guest
Jun 23rd, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. var mrwill = db.collection('scc').doc('demo')
  2. mrwill.update({
  3. roomname: "true"
  4. })
  5. .then(function() {
  6. return console.log("Document successfully updated!");
  7. })
  8. .catch(function(error) {
  9. // The document probably doesn't exist.
  10. return console.error("Error updating document: ", error);
  11. });
  12.  
  13. mrwill = db.collection('scc').doc('demo')
  14. mrwill.set({ any_data:"HELLOOOOOOOO ",roomname: "true"});
Add Comment
Please, Sign In to add comment