Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Welcome to Code Forum!
Join a community that supports you and your coding journey from day one. We strive to be a friendly, supportive community that empowers everyone to be better developers. By registering with us, you'll be able to discuss, share and private message with other members of our community.
var ref = firebase.database().ref('Location/Lat');
var latitude;
var longitude;
ref.on("value", function(snapshot) {
console.log(snapshot.val());
latitude = snapshot.val().Latitude;
longitude = snapshot.val().Longitude;
console.log(latitude, longitude)...
Could someone please help an inexperienced hobby programmer. I have run into a small problem of parsing data from a remote JSON file, which contains several children. I always need to parse the top (first) child, since it is always the newest. I need the latitude and logitude to place them on a...