Skip to content

Commit

Permalink
docs: fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kei-0917 authored Nov 3, 2023
1 parent a40647e commit 1d5ff47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion files/ja/web/javascript/language_overview/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ JavaScript はマルチパラダイムの動的言語であり、型や演算子

ECMAScript には 2 つの組み込み数値型があります。 **Number****BigInt** です。

Number 型は[IEEE 754 倍精度 64 ビットバイナリー値](https://ja.wikipedia.org/wiki/%E5%80%8D%E7%B2%BE%E5%BA%A6%E6%B5%AE%E5%8B%95%E5%B0%8F%E6%95%B0%E7%82%B9%E6%95%B0) (-(253 − 1) と 253 − 1 の間の数) です。そして、この記事や他の MDN の記事で「整数」という場合は、ふつう Number 値を使った整数の*表現*を意味しています。しかし、このような Number 値は本物の整数ではないので、少し注意が必要です。以下の例を見てください。
Number 型は[IEEE 754 倍精度 64 ビットバイナリー値](https://ja.wikipedia.org/wiki/%E5%80%8D%E7%B2%BE%E5%BA%A6%E6%B5%AE%E5%8B%95%E5%B0%8F%E6%95%B0%E7%82%B9%E6%95%B0) (-(2<sup>53</sup> − 1) と 2<sup>53</sup> − 1 の間の数) です。そして、この記事や他の MDN の記事で「整数」という場合は、ふつう Number 値を使った整数の*表現*を意味しています。しかし、このような Number 値は本物の整数ではないので、少し注意が必要です。以下の例を見てください。

```js
console.log(3 / 2); // 1.5, 1 ではない
Expand Down

0 comments on commit 1d5ff47

Please sign in to comment.