Why does promise log data but returns undefined with same data

105 Views Asked by At

I have a function:

getCoordinates: function() {
        geoLocation.getCurrentLocation().then(function(location) {
            return "latitude: " + location.latitude + " longitude:" + location.longitude;
        });
    }

Which returns undefined, but when I instead do:

getCoordinates: function() {
        geoLocation.getCurrentLocation().then(function(location) {
            console.log("latitude: " + location.latitude + " longitude:" + location.longitude);
        });
    }

and run the same function I get:

"latitude: 4X.XXXXXX longitude:-12X.XXXXXXX"

I don't understand why it is returning undefined when the data must be defined or it wouldn't log to the console. Is this some kind of timing issue? What am I missing?

1

There are 1 best solutions below

4
On BEST ANSWER

You are only returning from the then callback, not from the getCoordinates function (which in fact doesn't return anything, hence undefined).

This is unsolvable for asynchronous callbacks in general. In your case, the best solution will be to simply return the promise that you are already creating and which will fulfill with the value you expect in the future.

getCoordinates: function() {
    return geoLocation.getCurrentLocation().then(function(location) {
//  ^^^^^^
        return "latitude: " + location.latitude + " longitude:" + location.longitude;
    });
}