diff options
author | zlv2s <42953850+zlv2s@users.noreply.github.com> | 2021-03-22 15:19:35 +0800 |
---|---|---|
committer | Irvin <irvinfly@gmail.com> | 2021-04-03 01:50:47 +0800 |
commit | 0c8ab2798f99b631a2952670fc8f39f975373929 (patch) | |
tree | 23c9c91f8c62d82485f27e1bddd640028a66144e | |
parent | 6b489b14a2dd9dce10e40f83270c796d3cd72f27 (diff) | |
download | translated-content-0c8ab2798f99b631a2952670fc8f39f975373929.tar.gz translated-content-0c8ab2798f99b631a2952670fc8f39f975373929.tar.bz2 translated-content-0c8ab2798f99b631a2952670fc8f39f975373929.zip |
Correct translation #142
-rw-r--r-- | files/zh-cn/web/javascript/reference/global_objects/function/bind/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/web/javascript/reference/global_objects/function/bind/index.html b/files/zh-cn/web/javascript/reference/global_objects/function/bind/index.html index fbabcdfc13..e979676aa3 100644 --- a/files/zh-cn/web/javascript/reference/global_objects/function/bind/index.html +++ b/files/zh-cn/web/javascript/reference/global_objects/function/bind/index.html @@ -176,7 +176,7 @@ axisPoint instanceof Point; // true axisPoint instanceof YAxisPoint; // true new YAxisPoint(17, 42) instanceof Point; // true</pre> -<p>请注意,你不需要做特别的处理就可以用 {{jsxref("Operators/new", "new")}} 操作符创建一个绑定函数。也就是说,你不需要做特别处理就可以创建一个可以被直接调用的绑定函数,即使你更希望绑定函数是用 {{jsxref("Operators/new", "new")}} 操作符来调用。</p> +<p>请注意,你不需要做特别的处理就可以创建一个和 {{jsxref("Operators/new", "new")}} 操作符一起使用的绑定函数。也就是说,你不需要做特别处理就可以创建一个可以被直接调用的绑定函数,即使你更希望绑定函数是用 {{jsxref("Operators/new", "new")}} 操作符来调用。</p> <pre class="brush: js notranslate">// ...接着上面的代码继续的话, // 这个例子可以直接在你的 JavaScript 控制台运行 |