Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
311 views
in Technique[技术] by (71.8m points)

node.js - Please point out the misfacts in my learning regarding Asynchronous Javascript

I am new to Javascript and Ascynchronous programming, and a few things confuse me, please point out the misfacts in my learning.

  • Callbacks of an Asynchronous function are put in a message queue and executed via event loop.
  • Asynchronous execution is non-blocking, done via event loop.
  • Functions like setTimeout are asynchronous.
  • Asynchronous functions are blocking, only their callbacks are non-blocking.

If any of the above are wrong, please elaborate it.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Callbacks of an Asynchronous function are put in a message queue and executed via event loop.

No.

There are generally two kinds of asynchronous functions - ones that take some sort of callback to run when they are done and ones that produce a Promise as a result.

Callback-based functions

This is an example of a callback-based function:

setTimeout(() => console.log("foo"), 0);

console.log("bar");

/* output: 
bar
foo
*/

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...