Git Product home page Git Product logo

Comments (3)

0f-0b avatar 0f-0b commented on August 22, 2024 1

In browsers, an await operation queues a microtask when the promise resolves to continue execution, while a setTimeout call queues a task after some time to invoke the callback. Microtasks have a higher priority than tasks. That is, the event loop first runs every microtask before moving on to the next task. You can read more about the event loop on MDN.

Deno tries to follow browser behavior as far as possible. In your code, the microtask enqueued by every await operation immediately executes another await operation, so there is always a microtask in the queue, and the next task is never visited.

from deno.

BlowaterNostr avatar BlowaterNostr commented on August 22, 2024

@0f-0b You are amazing! It helped me a lot!

from deno.

marvinhagemeister avatar marvinhagemeister commented on August 22, 2024

Yup, @0f-0b answered this perfectly. This is the way Promises work in JS.

from deno.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.