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

417
Views
How to sava the data from an API to variable javascript
findOne: (email) => {
    let userbyemail=[]
    http.get(`http://localhost:8080/auth/user/email/${email}`,resp =>{
        let data = "";
        resp.on("data",chunk =>{
            data += chunk
        })
        req.on('end', () => {
        const user = JSON.parse(data)[0]
        userbyemail = user
        })
    })

    if (userbyemail.email === email){
            return userbyemail;
        }
    return null
},

I want to save the user information to a variable outside of the Http scope, what can i do?

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!