Skip to content

Commit

Permalink
Merge pull request #170 from gunyarakun/first-appearance-all-race
Browse files Browse the repository at this point in the history
fix(then-return-new-promise): all/race初出に説明を補足
  • Loading branch information
azu committed Jun 24, 2014
2 parents 1787e1a + 773c838 commit 6c77be9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Ch2_HowToWrite/then-return-new-promise.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@ console.log(thenPromise !== catchPromise);// => true

image::img/then_catch.png[Then Catch flow]

この挙動はPromise全般に当てはまるため、`Promise.all`や`Promise.race`も
引数で受け取ったものとは別のpromiseオブジェクトを作って返しています。

この仕組みはPromiseを拡張する時は意識しないと、いつのまにか触ってるpromiseオブジェクトが
別のものであったという事が起こりえると思います。

Expand Down Expand Up @@ -110,4 +107,7 @@ function anAsyncCall() {
----

これらのアンチパターンについて、詳しくは
http://taoofcode.net/promise-anti-patterns/[Promise Anti-patterns] を参照して下さい。
http://taoofcode.net/promise-anti-patterns/[Promise Anti-patterns] を参照して下さい。

この挙動はPromise全般に当てはまるため、後に説明する<<ch2-promise-all,Promise.all>>や<<ch2-promise-race,Promise.race>>も
引数で受け取ったものとは別のpromiseオブジェクトを作って返しています。

0 comments on commit 6c77be9

Please sign in to comment.