I'm currently working on a web application that utilizes Firebase database. I'm encountering difficulties when trying to access the elements that are labeled as encircled
. Can anyone offer any guidance or suggestions?
Here is the code snippet I'm using:
function getDataFirebase() {
return new Promise(function(resolve, reject){
refReview.on("value", async function(snap){
var data=snap.val();
console.log("awdaw",data);
})
})
}