Skip to content

Commit

Permalink
[zh-cn]: update the translation of Set.forEach()&size (#16716)
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonLamv-t authored Oct 26, 2023
1 parent c1d4223 commit 75a4b32
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ slug: Web/JavaScript/Reference/Global_Objects/Set/forEach

{{JSRef}}

**`forEach()`** 方法对 `Set` 对象中的每个值按插入顺序执行一次提供的函数
{{jsxref("Set")}} 实例的 **`forEach()`** 方法按插入顺序为该集合中的每个值执行一次提供的函数

{{EmbedInteractiveExample("pages/js/set-prototype-foreach.html")}}

Expand All @@ -19,20 +19,19 @@ forEach(callbackFn, thisArg)
### 参数

- `callback`

- : 为集合中每个元素执行的回调函数,该函数接收三个参数:

- `value``key`
- : `Set` 中正在处理的当前元素。因为 `Set` 中没有键,所以 `value` 会被共同传递给这两个参数
- : 为集合中每个元素执行的函数,使用以下参数调用该函数:
- `value`
- : 每次迭代的值。
- `key`
- : 每次迭代的键。始终与 `value` 相同
- `set`
- : 调用 `forEach()``Set` 对象。

- `thisArg`
- : 值在执行 `callbackFn` 时作为 `this` 使用。
- : 正在迭代的集合。
- `thisArg` {{optional_inline}}
- : 执行 `callbackFn` 时用作 `this` 的值。

### 返回值

{{jsxref("undefined")}}。
无({{jsxref("undefined")}}

## 描述

Expand All @@ -44,7 +43,7 @@ forEach(callbackFn, thisArg)
- **元素的键**
- **被遍历的 `Set`**

但是由于 `Set` 对象中没有键(key),所以前两个参数都是 {{jsxref("Set")}} 中元素的值(**value**),之所以这样设计回调函数是为了和 {{jsxref("Map.foreach", "Map")}} 以及 {{jsxref("Array.forEach","Array")}} 的 `forEach()` 函数用法保持一致
`Set` 对象中没有键,所以前两个参数都是 {{jsxref("Set")}} 中包含的****。这是为了与 {{jsxref("Map/foreach", "Map")}} {{jsxref("Array/forEach", "Array")}} 的 `forEach()` 方法保持一致

如果提供了一个 `thisArg` 参数给 `forEach` 函数,则参数将会作为回调函数中的 `this`值。否则 `this` 值为 `undefined`。回调函数中 `this` 的绑定是根据[函数被调用时通用的 `this` 绑定规则来决定的](/zh-CN/docs/Web/JavaScript/Reference/Operators/this)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ slug: Web/JavaScript/Reference/Global_Objects/Set/size

{{JSRef}}

**`size`** 属性将会返回 {{jsxref("Set")}} 对象中(唯一的)元素的个数。
{{jsxref("Set")}} 实例的 **`size`** 访问器属性将返回该集合中(唯一的)元素的个数。

{{EmbedInteractiveExample("pages/js/set-prototype-size.html")}}

## 描述

`size` 的值是一个整数,表示 `Set` 对象有多少条目。`size` 的 set 访问函数是 `undefined`你不能改变这个属性
`size` 的值是一个整数,表示 `Set` 对象有多少条目。`size` 的 set 访问函数是 `undefined`你无法改变这个属性

## 示例

Expand Down

0 comments on commit 75a4b32

Please sign in to comment.