Answers for "firebase js loop"

0

firebase js loop

firebase.database().ref('\interests').child("I would like to dine with").on('value', (snapshot) => {
  snapshot.forEach((child) => {
    console.log(child.key, child.val()); 
    this.intVal.push(child.val());
    console.log("intVal",this.intVal);
  });
  }
})
Posted by: Guest on August-20-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language