Posts by Wilker07 • 1 point
1 post
-
-1
votes0
answers12
viewsQ: How to access values in a database in the Firebase database?
I am running the following code: var dadosCarro = firebase.database().ref('carro'); dadosCarro.on('value', (snapshot) => { var data = snapshot.val(); console.log(data) }); As an answer on the…