Skip to content

Commit

Permalink
zh-cn: sync type for TypedArray (#17884)
Browse files Browse the repository at this point in the history
  • Loading branch information
Young-Lord authored Jan 13, 2024
1 parent c279dd6 commit ff9d263
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion files/zh-cn/web/api/crypto/getrandomvalues/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ cryptoObj.getRandomValues(typedArray);
### 参数

- `typedArray`
- : 是一个基于整数的 {{jsxref("TypedArray")}},它可以是 {{jsxref("Int8Array")}}、{{jsxref("Uint8Array")}}、{{jsxref("Int16Array")}}、 {{jsxref("Uint16Array")}}、 {{jsxref("Int32Array")}} 或者 {{jsxref("Uint32Array")}}。在数组中的所有的元素会被随机数重写。(注释:生成的随机数储存在 `typedArray` 数组上。)
- : 是一个基于整数的 {{jsxref("TypedArray")}},它可以是 {{jsxref("Int8Array")}}、{{jsxref("Uint8Array")}}、{{jsxref("Int16Array")}}、 {{jsxref("Uint16Array")}}、 {{jsxref("Int32Array")}} 或者 {{jsxref("Uint32Array")}}**不可**使用 `Float32Array` 或者 `Float64Array`。在数组中的所有的元素会被随机数重写。(注释:生成的随机数储存在 `typedArray` 数组上。)

### 异常事件

Expand Down

0 comments on commit ff9d263

Please sign in to comment.