From 98f38608a6e8b4174eed9321d5a87e877134ce12 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Tue, 1 Oct 2024 23:49:22 +0900 Subject: [PATCH] =?UTF-8?q?2024/07/26=20=E6=99=82=E7=82=B9=E3=81=AE?= =?UTF-8?q?=E8=8B=B1=E8=AA=9E=E7=89=88=E3=81=AB=E5=9F=BA=E3=81=A5=E3=81=8D?= =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../javascript/reference/global_objects/array/from/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/ja/web/javascript/reference/global_objects/array/from/index.md b/files/ja/web/javascript/reference/global_objects/array/from/index.md index 64a3240cf39110..e01c6db8b85c44 100644 --- a/files/ja/web/javascript/reference/global_objects/array/from/index.md +++ b/files/ja/web/javascript/reference/global_objects/array/from/index.md @@ -2,7 +2,7 @@ title: Array.from() slug: Web/JavaScript/Reference/Global_Objects/Array/from l10n: - sourceCommit: fb85334ffa4a2c88d209b1074909bee0e0abd57a + sourceCommit: 8421c0cd94fa5aa237c833ac6d24885edbc7d721 --- {{JSRef}} @@ -171,7 +171,7 @@ console.log(Array.from.call(NotArray, { length: 1, 0: "foo" })); // NotArray { '0': 'foo', length: 1 } ``` -`this` の値がコンストラクタでない場合は、プレーンな `Array` オブジェクトを返します。 +`this` の値がコンストラクターでない場合は、プレーンな `Array` オブジェクトを返します。 ```js console.log(Array.from.call({}, { length: 1, 0: "foo" })); // [ 'foo' ]