Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
353 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 Reply

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
*/

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...