Skip to content

Commit

Permalink
Object.freeze(): fix markup
Browse files Browse the repository at this point in the history
  • Loading branch information
mikecat authored and mfuji09 committed Jul 5, 2024
1 parent aa4bb85 commit 7d29c97
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Object.freeze(new Float64Array(new ArrayBuffer(64), 32, 2)); // 要素あり
// TypeError: 要素を含む配列バッファービューは凍結できない
```

なお、標準の 3 つのプロパティ (`buf.byteLength`, `buf.byteOffset, `buf.buffer`) は読み取り専用ですので({{jsxref("ArrayBuffer")}} または {{jsxref("SharedArrayBuffer")}} の場合)、これらのプロパティを凍結しようとする理由はありません。
なお、標準の 3 つのプロパティ (`buf.byteLength`, `buf.byteOffset`, `buf.buffer`) は読み取り専用ですので({{jsxref("ArrayBuffer")}} または {{jsxref("SharedArrayBuffer")}} の場合)、これらのプロパティを凍結しようとする理由はありません。

{{jsxref("Object.seal()")}} とは異なり、 `Object.freeze()` によって凍結されたオブジェクトの既存のプロパティは不変となり、データプロパティには代入できなくなります。

Expand Down

0 comments on commit 7d29c97

Please sign in to comment.