From e32564de98d7f14c4bfbeeef5e0bae5df9b2bd4e Mon Sep 17 00:00:00 2001 From: qwangry <58112936+qwangry@users.noreply.github.com> Date: Thu, 12 Sep 2024 10:13:34 +0800 Subject: [PATCH] docs: fix spelling error --- .../indexed-collections/array/array.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/standard-built-in-objects/indexed-collections/array/array.md b/docs/standard-built-in-objects/indexed-collections/array/array.md index 43ec159dc..21744c752 100644 --- a/docs/standard-built-in-objects/indexed-collections/array/array.md +++ b/docs/standard-built-in-objects/indexed-collections/array/array.md @@ -164,7 +164,7 @@ console.log(a.length); | 方法 | 描述 | | :---------------- | :--------------------------------------------------------------- | -| `Array.form()` | 从一个类似数组或可迭代对象中创建一个新的数组实例。 | +| `Array.from()` | 从一个类似数组或可迭代对象中创建一个新的数组实例。 | | `Array.isArray()` | 用于判断指定值是否为数组。 | | `Array.of()` | 创建一个具有可变数量参数的新数组实例,而不考虑参数的数量或类型。 |