I want to display all the values in the vertex. How can I do this? Currently the following code give me null value.
var dbRef = firebase.database().ref("data/aqibkhan109").child('corn').child('polygon19').child('vertex');
dbRef.on('value', function(snapshot){
console.log(snapshot.val());
});
Any help Please, It's a realtime database
