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

77
Views
Promise doesn't hand over return
class UserStorage {
  async loginUser(id, pw) {
    await setTimeout(() => {
      if (
        (id === "ellie" && pw === "dream") ||
        (id === "coder" && pw === "academy")
      )
        return id;
      else return new Error("not found user info");
    }, 1000);
  }
  async getRoles(user) {
    if (user === "ellie") return { name: "ellie", role: "admin" };
    else return new Error("no access");
  }
}
const userStorage = new UserStorage();

const id = prompt("wowSans");
const password = prompt("pw");

userStorage
  .loginUser(id,password)
  .then(userStorage.getRoles)
  .then((value) => console.log(`Hi ${value.name}! Your Role is ${value.role}!`))
  .catch(console.log);

I want print "Hi ellie! Your Role is admin!" but it doesn't working. it printed "Hi Error! Your Role is Undefined!" I encountered Promise and async/await for the first time today. Does someone know a suitable solution? Please answer!

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!