From dc6172b5f8b0f8ddb809c677580b0c1afd31e488 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Sat, 11 Nov 2023 01:38:18 +0900 Subject: [PATCH 1/6] =?UTF-8?q?2023/04/10=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=90=8C=E6=9C=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../reference/global_objects/typedarray/@@species/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/ja/web/javascript/reference/global_objects/typedarray/@@species/index.md b/files/ja/web/javascript/reference/global_objects/typedarray/@@species/index.md index 659cac07a26c8a..ba94573921d3a7 100644 --- a/files/ja/web/javascript/reference/global_objects/typedarray/@@species/index.md +++ b/files/ja/web/javascript/reference/global_objects/typedarray/@@species/index.md @@ -1,8 +1,8 @@ --- -title: get TypedArray[@@species] +title: TypedArray[@@species] slug: Web/JavaScript/Reference/Global_Objects/TypedArray/@@species l10n: - sourceCommit: 194d3e00cb93a6e5ea44812548f4131cb17f0381 + sourceCommit: bf81c9ed7de8cfd94cf1fc7f77e23b987f753a8b --- {{JSRef}} From 7b7fb3f0533edd922cf69bcf8518543baeb44f3c Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Sat, 11 Nov 2023 01:42:58 +0900 Subject: [PATCH 2/6] =?UTF-8?q?2023/09/12=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=90=8C=E6=9C=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../reference/global_objects/typedarray/buffer/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/files/ja/web/javascript/reference/global_objects/typedarray/buffer/index.md b/files/ja/web/javascript/reference/global_objects/typedarray/buffer/index.md index 34943ec4576760..291f48d9d01a01 100644 --- a/files/ja/web/javascript/reference/global_objects/typedarray/buffer/index.md +++ b/files/ja/web/javascript/reference/global_objects/typedarray/buffer/index.md @@ -7,9 +7,9 @@ l10n: {{JSRef}} -**`buffer`** アクセサープロパティは、構築時に _TypedArray_ から参照されるようになった {{jsxref("ArrayBuffer")}} を表します。 +**`buffer`** は {{jsxref("TypedArray")}} インスタンスのアクセサープロパティで、構築時点にこの型付き配列が参照する {{jsxref("ArrayBuffer")}} または {{jsxref("SharedArrayBuffer")}} を返します。 -{{EmbedInteractiveExample("pages/js/typedarray-buffer.html","shorter")}} +{{EmbedInteractiveExample("pages/js/typedarray-buffer.html", "shorter")}} ## 解説 @@ -47,5 +47,5 @@ console.log(arr.buffer === buffer); // true ## 関連情報 -- [JavaScript の型付き配列](/ja/docs/Web/JavaScript/Typed_arrays) +- [JavaScript の型付き配列](/ja/docs/Web/JavaScript/Guide/Typed_arrays) - {{jsxref("TypedArray")}} From 32cb336a8e5e14a97cd98212e4faf12f0c1a6534 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Sat, 11 Nov 2023 01:45:38 +0900 Subject: [PATCH 3/6] =?UTF-8?q?2023/09/12=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=90=8C=E6=9C=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../global_objects/typedarray/bytelength/index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/files/ja/web/javascript/reference/global_objects/typedarray/bytelength/index.md b/files/ja/web/javascript/reference/global_objects/typedarray/bytelength/index.md index db6508ffdf7657..17b8e7f81d1ad3 100644 --- a/files/ja/web/javascript/reference/global_objects/typedarray/bytelength/index.md +++ b/files/ja/web/javascript/reference/global_objects/typedarray/bytelength/index.md @@ -2,14 +2,14 @@ title: TypedArray.prototype.byteLength slug: Web/JavaScript/Reference/Global_Objects/TypedArray/byteLength l10n: - sourceCommit: 194d3e00cb93a6e5ea44812548f4131cb17f0381 + sourceCommit: c2445ce1dc3a0170e2fbfdbee10e18a7455c2282 --- {{JSRef}} -**`byteLength`** アクセサープロパティは、型付き配列の長さを(バイト単位で)表します。 +**`byteLength`** は {{jsxref("TypedArray")}} のアクセサープロパティで、この型付き配列の長さを(バイト単位で)返します。 -{{EmbedInteractiveExample("pages/js/typedarray-bytelength.html","shorter")}} +{{EmbedInteractiveExample("pages/js/typedarray-bytelength.html", "shorter")}} ## 解説 @@ -42,5 +42,5 @@ uint8offSet.byteLength; // 6 (due to the offset of the constructed Uint8Array) ## 関連情報 -- [JavaScript の型付き配列](/ja/docs/Web/JavaScript/Typed_arrays) +- [JavaScript の型付き配列](/ja/docs/Web/JavaScript/Guide/Typed_arrays) - {{jsxref("TypedArray")}} From cc4a9e71016675c4c6cb33a1c22690f2917b9884 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Sat, 11 Nov 2023 01:49:50 +0900 Subject: [PATCH 4/6] =?UTF-8?q?2023/09/07=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=90=8C=E6=9C=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../reference/global_objects/typedarray/byteoffset/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/ja/web/javascript/reference/global_objects/typedarray/byteoffset/index.md b/files/ja/web/javascript/reference/global_objects/typedarray/byteoffset/index.md index 853dd04643b563..e42136a6a5ff19 100644 --- a/files/ja/web/javascript/reference/global_objects/typedarray/byteoffset/index.md +++ b/files/ja/web/javascript/reference/global_objects/typedarray/byteoffset/index.md @@ -7,7 +7,7 @@ l10n: {{JSRef}} -**`byteOffset`** アクセサープロパティは、 {{jsxref("ArrayBuffer")}} の開始位置からの型付き配列の (バイト単位の) オフセットを表します。 +**`byteOffset`** は {{jsxref("TypedArray")}} インスタンスのアクセサープロパティで、この型付き配列の {{jsxref("ArrayBuffer")}} または {{jsxref("SharedArrayBuffer")}} の開始位置からの(バイト単位の)オフセットを返します。 ## 解説 @@ -37,5 +37,5 @@ uint8array2.byteOffset; // 3 (as specified when constructing Uint8Array) ## 関連情報 -- [JavaScript の型付き配列](/ja/docs/Web/JavaScript/Typed_arrays) +- [JavaScript の型付き配列](/ja/docs/Web/JavaScript/Guide/Typed_arrays) - {{jsxref("TypedArray")}} From 161974bc095d2158d1b4361853ef95f7b7e3136b Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Sat, 11 Nov 2023 01:51:43 +0900 Subject: [PATCH 5/6] =?UTF-8?q?2023/09/12=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=90=8C=E6=9C=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../global_objects/typedarray/bytes_per_element/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/files/ja/web/javascript/reference/global_objects/typedarray/bytes_per_element/index.md b/files/ja/web/javascript/reference/global_objects/typedarray/bytes_per_element/index.md index 5467f40c234121..d5daae34d738f5 100644 --- a/files/ja/web/javascript/reference/global_objects/typedarray/bytes_per_element/index.md +++ b/files/ja/web/javascript/reference/global_objects/typedarray/bytes_per_element/index.md @@ -2,14 +2,14 @@ title: TypedArray.BYTES_PER_ELEMENT slug: Web/JavaScript/Reference/Global_Objects/TypedArray/BYTES_PER_ELEMENT l10n: - sourceCommit: 194d3e00cb93a6e5ea44812548f4131cb17f0381 + sourceCommit: c2445ce1dc3a0170e2fbfdbee10e18a7455c2282 --- {{JSRef}} **`TypedArray.BYTES_PER_ELEMENT`** プロパティは、型付き配列内の各要素の大きさをバイト単位で表します。 -{{EmbedInteractiveExample("pages/js/typedarray-bytes-per-element.html","shorter")}} +{{EmbedInteractiveExample("pages/js/typedarray-bytes-per-element.html", "shorter")}} ## 値 @@ -75,5 +75,5 @@ new BigUint64Array([]).BYTES_PER_ELEMENT; // 8 ## 関連情報 -- [JavaScript の型付き配列](/ja/docs/Web/JavaScript/Typed_arrays) +- [JavaScript の型付き配列](/ja/docs/Web/JavaScript/Guide/Typed_arrays) - {{jsxref("TypedArray")}} From 6bf77b44f6ec1bb98a45ab7627674bd515c9344a Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Sat, 11 Nov 2023 01:53:38 +0900 Subject: [PATCH 6/6] =?UTF-8?q?2023/09/12=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=90=8C=E6=9C=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../reference/global_objects/typedarray/length/index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/files/ja/web/javascript/reference/global_objects/typedarray/length/index.md b/files/ja/web/javascript/reference/global_objects/typedarray/length/index.md index bd4c5e76eb2c2a..677a891aa29e38 100644 --- a/files/ja/web/javascript/reference/global_objects/typedarray/length/index.md +++ b/files/ja/web/javascript/reference/global_objects/typedarray/length/index.md @@ -2,14 +2,14 @@ title: TypedArray.prototype.length slug: Web/JavaScript/Reference/Global_Objects/TypedArray/length l10n: - sourceCommit: 194d3e00cb93a6e5ea44812548f4131cb17f0381 + sourceCommit: c2445ce1dc3a0170e2fbfdbee10e18a7455c2282 --- {{JSRef}} -**`length`** アクセサープロパティは、型付き配列の長さを(要素数で)表します。 +**`length`** は {{jsxref("TypedArray")}} インスタンスのアクセサープロパティで、型付き配列の長さを(要素数で)返します。 -{{EmbedInteractiveExample("pages/js/typedarray-length.html","shorter")}} +{{EmbedInteractiveExample("pages/js/typedarray-length.html", "shorter")}} ## 解説 @@ -42,5 +42,5 @@ uint8.length; // 6 (構築された Uint8Array のオフセットによる) ## 関連情報 -- [JavaScript の型付き配列](/ja/docs/Web/JavaScript/Typed_arrays) +- [JavaScript の型付き配列](/ja/docs/Web/JavaScript/Guide/Typed_arrays) - {{jsxref("TypedArray")}}