From 2a5aa35d0b8acedf6f14bc0fef69d141efd605a9 Mon Sep 17 00:00:00 2001 From: WooMai Date: Thu, 14 Oct 2021 01:52:24 +0800 Subject: Improve Simplified Chinese Translation (#2714) * Improve Chinese Translations * remove residual english parts * remove line break --- .../reference/global_objects/array/includes/index.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'files/zh-cn') diff --git a/files/zh-cn/web/javascript/reference/global_objects/array/includes/index.html b/files/zh-cn/web/javascript/reference/global_objects/array/includes/index.html index 183d9978b3..5001b155be 100644 --- a/files/zh-cn/web/javascript/reference/global_objects/array/includes/index.html +++ b/files/zh-cn/web/javascript/reference/global_objects/array/includes/index.html @@ -11,7 +11,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Array/includes ---
{{JSRef}} 
-

includes() 方法用来判断一个数组是否包含一个指定的值,根据情况,如果包含则返回 true,否则返回false。

+

includes() 方法用来判断一个数组是否包含一个指定的值,根据情况,如果包含则返回 true,否则返回 false

{{EmbedInteractiveExample("pages/js/array-includes.html")}}
@@ -29,7 +29,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Array/includes

需要查找的元素值。

-

Note:  使用 includes()比较字符串和字符时是区分大小写。

+

Note: 使用 includes()比较字符串和字符时是区分大小写的。

fromIndex {{optional_inline}}
@@ -38,12 +38,12 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Array/includes

返回值

-

A {{jsxref("Boolean")}} which is true if the value valueToFind is found within the array (or the part of the array indicated by the index fromIndex, if specified). Values of zero are all considered to be equal regardless of sign (that is, -0 is considered to be equal to both 0 and +0), but false is not considered to be the same as 0.

+

返回一个布尔值 {{jsxref("Boolean")}} 。
]如果在数组中(或 fromIndex 指定的范围中)找到了 valueToFind,则返回 true,否则返回 false

-

返回一个布尔值 {{jsxref("Boolean")}} ,如果在数组中找到了(如果传入了 fromIndex ,表示在 fromIndex 指定的索引范围中找到了)则返回 true 。

+

0 的值将全部视为相等,与符号无关(即 -0 与 0 和 +0 相等),但 false 不被认为与 0 相等。

-

Note: Technically speaking, includes() uses the sameValueZero algorithm to determine whether the given element is found.

+

Note: 技术上来讲,includes() 使用 零值相等 算法来确定是否找到给定的元素。

示例

@@ -57,7 +57,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Array/includes

fromIndex 大于等于数组长度

-

如果 fromIndex 大于等于数组的长度,则会返回 false,且该数组不会被搜索。

+

如果 fromIndex 大于等于数组的长度,则将直接返回 false,且不搜索该数组。

var arr = ['a', 'b', 'c'];
 
@@ -66,7 +66,7 @@ arr.includes('c', 100); // false

计算出的索引小于 0

-

如果 fromIndex 为负值,计算出的索引将作为开始搜索searchElement的位置。如果计算出的索引小于 0,则整个数组都会被搜索。

+

如果 fromIndex 为负值,计算出的索引将作为开始搜索searchElement的位置。如果计算出的索引小于 0,则整个数组都会被搜索。

// array length is 3
 // fromIndex is -100
-- 
cgit v1.2.3-54-g00ecf