Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 746915
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T14:08:43+00:00 2026-05-14T14:08:43+00:00

I have a function that is set up as follows function mainFunction() { function

  • 0

I have a function that is set up as follows

function mainFunction() {
      function subFunction() {
            var str = "foo";
            return str;
      }
}

var test = mainFunction();
alert(test);

To my logic, that alert should return ‘foo’, but instead it returns undefined. What am I doing wrong?

UPDATE: Here’s my actual code (it’s a function for reverse-geocoding with the Google API)

function reverseGeocode(latitude,longitude){
    var address = "";
    var country = "";
    var countrycode = "";
    var locality = "";

    var geocoder = new GClientGeocoder();
    var latlng = new GLatLng(latitude, longitude);

     return geocoder.getLocations(latlng, function(addresses) {
     address = addresses.Placemark[0].address;
     country = addresses.Placemark[0].AddressDetails.Country.CountryName;
     countrycode = addresses.Placemark[0].AddressDetails.Country.CountryNameCode;
     locality = addresses.Placemark[0].AddressDetails.Country.AdministrativeArea.SubAdministrativeArea.Locality.LocalityName;
     return country;
    });   
   }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T14:08:44+00:00Added an answer on May 14, 2026 at 2:08 pm

    you have to call a function before it can return anything.

    function mainFunction() {
          function subFunction() {
                var str = "foo";
                return str;
          }
          return subFunction();
    }
    
    var test = mainFunction();
    alert(test);
    

    Or:

    function mainFunction() {
          function subFunction() {
                var str = "foo";
                return str;
          }
          return subFunction;
    }
    
    var test = mainFunction();
    alert( test() );
    

    for your actual code. The return should be outside, in the main function. The callback is called somewhere inside the getLocations method and hence its return value is not recieved inside your main function.

    function reverseGeocode(latitude,longitude){
        var address = "";
        var country = "";
        var countrycode = "";
        var locality = "";
    
        var geocoder = new GClientGeocoder();
        var latlng = new GLatLng(latitude, longitude);
    
        geocoder.getLocations(latlng, function(addresses) {
         address = addresses.Placemark[0].address;
         country = addresses.Placemark[0].AddressDetails.Country.CountryName;
         countrycode = addresses.Placemark[0].AddressDetails.Country.CountryNameCode;
         locality = addresses.Placemark[0].AddressDetails.Country.AdministrativeArea.SubAdministrativeArea.Locality.LocalityName;
        });   
        return country
       }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a function that I set custom key and value to it and
I have the following function that does string splitting: on splitText(aString, delimiter) set retVal
I have a function that looks as follows: let isInSet setElems normalize p =
I have jquery function that is triggered by a 'click' handler: $('#showDatesCheckbox').click(function(){ var table
I have a Haskell function that returns a monad, declared as follows: data Options
I have certain initializing functions that I use to set up audit logging on
I have a set of functions that I declare in a header like this:
I have a problem with a javascript set of functions that I made. This
I have a set of five functions, that could be called one of five
Inside my Controller i have function that runs after user clicks on item, which

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.