Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

162
Views
Save content of promise to an external array

When I try to capture the value of a Promise in an array outside of .then(), the array is populated with undefined (though console.log() logs the correct values).

  async function fetchCoordinates(pluscode) {
    let response = await fetch(url);
    return await response.json();
  }

  let places = []
  fetchCoordinates(pluscode)
  .then(geoinfo => {
    console.log(geoinfo)
    console.log(geoinfo.plus_code.geometry.location.lat)
    places.push(
      {position: new google.maps.LatLng(
        geoinfo.plus_code.geometry.location.lat, 
        geoinfo.plus_code.geometry.location.lng
      )}
    )
  })
about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!