aboutsummaryrefslogtreecommitdiff
path: root/files
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-09-21 00:40:12 +0900
committerGitHub <noreply@github.com>2021-09-21 00:40:12 +0900
commit4888cd693f7d30795ea2cb745a9c914795cdceaf (patch)
tree116d34c12d97fcbb7cc8598c1c4fc4c84778eb99 /files
parentcd04237600bfa2f621a153e571df5e1b4eaf7414 (diff)
downloadtranslated-content-4888cd693f7d30795ea2cb745a9c914795cdceaf.tar.gz
translated-content-4888cd693f7d30795ea2cb745a9c914795cdceaf.tar.bz2
translated-content-4888cd693f7d30795ea2cb745a9c914795cdceaf.zip
Global_Objects/Float64Array を更新 (#2435)
- Markdown化 - 2021/09/01 時点の英語版に同期
Diffstat (limited to 'files')
-rw-r--r--files/ja/web/javascript/reference/global_objects/float64array/index.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/files/ja/web/javascript/reference/global_objects/float64array/index.md b/files/ja/web/javascript/reference/global_objects/float64array/index.md
index 2ddc27abb8..c635d203c3 100644
--- a/files/ja/web/javascript/reference/global_objects/float64array/index.md
+++ b/files/ja/web/javascript/reference/global_objects/float64array/index.md
@@ -109,13 +109,13 @@ var float64 = new Float64Array(2);
float64[0] = 42;
console.log(float64[0]); // 42
console.log(float64.length); // 2
-console.log(float64.BYTES_PER_ELEMENT); // 4
+console.log(float64.BYTES_PER_ELEMENT); // 8
// 配列から
var arr = new Float64Array([21,31]);
console.log(arr[1]); // 31
-// From another TypedArray
+// 他の TypedArray から
var x = new Float64Array([21, 31]);
var y = new Float64Array(x);
console.log(y[0]); // 21