Skip to content

Commit bae3d16

Browse files
authored
Merge pull request #347 from chokkura/master
Update article.md
2 parents bec0f45 + afee6e7 commit bae3d16

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

1-js/06-advanced-functions/10-bind/article.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,6 @@ user.sayNow("Hello");
323323
324324
通常は、オブジェクトメソッドで `this` を固定するために `bind` を適用し、どこかに渡すことができるようにします。たとえば、`setTimeout` に。
325325
326-
When we fix some arguments of an existing function, the resulting (less universal) function is called *partially applied* or *partial*.
326+
既存の関数において、引数のいくつかを固定した汎用性の低い関数は、部分関数と呼ばれます。
327327
328-
Partials are convenient when we don't want to repeat the same argument over and over again. Like if we have a `send(from, to)` function, and `from` should always be the same for our task, we can get a partial and go on with it.
328+
部分関数は同じ引数を何度も繰り返したくないときに便利です。例えば、`send(from, to)` という関数があって、`from`はどのタスクでも常に同じになるはずなら、部分関数を利用してそれを処理できます。

0 commit comments

Comments
 (0)