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