mirror of
https://github.com/ruanyf/es6tutorial.git
synced 2025-05-24 18:32:22 +00:00
docs(acknowledgement): edit acknowledgement
This commit is contained in:
parent
b48a35bebb
commit
3226888ad8
5
docs/acknowledgment.md
Normal file
5
docs/acknowledgment.md
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# 鸣谢
|
||||||
|
|
||||||
|
## Generator
|
||||||
|
|
||||||
|
网友 vision57 提出,`next()`、`throw()`、`return()`这三个方法本质上是同一件事,可以放在一起理解。它们的作用都是让 Generator 函数恢复执行,并且使用不同的语句替换`yield`表达式。
|
@ -708,7 +708,7 @@ g.next() // { value: 7, done: true }
|
|||||||
|
|
||||||
## next()、throw()、return() 的共同点
|
## next()、throw()、return() 的共同点
|
||||||
|
|
||||||
网友 vision57 提出,`next()`、`throw()`、`return()`这三个方法本质上是同一件事,可以放在一起理解。它们的作用都是让 Generator 函数恢复执行,并且使用不同的语句替换`yield`表达式。
|
`next()`、`throw()`、`return()`这三个方法本质上是同一件事,可以放在一起理解。它们的作用都是让 Generator 函数恢复执行,并且使用不同的语句替换`yield`表达式。
|
||||||
|
|
||||||
`next()`是将`yield`表达式替换成一个值。
|
`next()`是将`yield`表达式替换成一个值。
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user