Skip to content

Commit

Permalink
Update files/zh-cn/web/javascript/event_loop/index.md
Browse files Browse the repository at this point in the history
Co-authored-by: A1lo <[email protected]>
  • Loading branch information
familyboat and yin1999 authored Oct 26, 2024
1 parent f8f925c commit 2301255
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion files/zh-cn/web/javascript/event_loop/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const baz = bar(7); // 将 42 赋值给 baz

JavaScript 运行时包含一个待处理消息的消息队列。每一个消息都关联着一个用以处理这个消息的回调函数。

[事件循环](#事件循环) 期间的某个时刻,运行时会开始处理最先进入队列的消息。被处理的消息会被移出队列,并作为输入参数来调用与之关联的函数。正如前面所提到的,调用一个函数总是会为其创造一个新的栈帧。
[事件循环](#事件循环)期间的某个时刻,运行时会开始处理最先进入队列的消息。被处理的消息会被移出队列,并作为输入参数来调用与之关联的函数。正如前面所提到的,调用一个函数总是会为其创造一个新的栈帧。

函数的处理会一直进行到执行栈再次为空为止;然后事件循环将会处理队列中的下一个消息(如果还有的话)。

Expand Down

0 comments on commit 2301255

Please sign in to comment.