0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

javascript07_Number

Last updated at Posted at 2022-02-18

varで変数の宣言をする時に、宣言の回数は1回で十分です。

image.png

注意:実行は上から下へ

JSに全ての数値はNumber型です。整数も小数もNumber型です。

typeofで変数の型を確認することができる。
構文: typeof 変数
console.log(typeof b);

使用できるNumberの最大値: 
構文: Number.MAX_VALUE
image.png

最大値を超える場合は、Infinityが返されます。
InfinityもNumber型です。

NaN:数字ではないです。Not a number。型はNumber型です。

使用できるNumberの最小値:
構文: Number.MIN_VALUE

JSのなかに整数の計算は基本的に全部正しいです。
小数で計算すると、結果の精度が落ちます。原因としてはコンピュータは2進数計算です。
そのため、JSで精度の高い計算をしないでください。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?