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

140
Views
Generator next parameter in `for await`

When you have an async generator, you can call next(x) to return a result to the generator.

async function* generate() {
  for (let i = start; i <= 5; i++) {
    const result = yield i;
    console.log("result", result)
  }
}
;(async () => {
  const generator = generate()
  await generator.next(1)
  await generator.next(2)
})();

This will print 1 and 2 as this is the next parameter that is passed as a result back to the generator.

How to replicate this same behaviour but using await for ?

for await (let value of generate()) {
  // ... no way to send `next` parameter here
}

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!