From 7a9db40025c2f387b4b75b4bd0d32a18a63c0d87 Mon Sep 17 00:00:00 2001 From: t7yang Date: Mon, 10 Jan 2022 08:38:07 +0800 Subject: remove sup tag for zh-TW --- files/zh-tw/web/javascript/data_structures/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'files/zh-tw/web/javascript/data_structures') diff --git a/files/zh-tw/web/javascript/data_structures/index.html b/files/zh-tw/web/javascript/data_structures/index.html index a8462f6e55..83b215697f 100644 --- a/files/zh-tw/web/javascript/data_structures/index.html +++ b/files/zh-tw/web/javascript/data_structures/index.html @@ -53,7 +53,7 @@ var foo = true; // foo 目前是布林值

數字型別

-

根據 ECMAScript 標準,數字型別只有一種:雙精度 64 位元二進制格式 IEEE 754 值(在 -(253 -1) and 253 -1 之間的數字)。而整數並沒有指定的型別。數字除了能代表浮點數以外,還有三個符號值:+Infinity-InfinityNaN(not-a-number,非數字)。

+

根據 ECMAScript 標準,數字型別只有一種:雙精度 64 位元二進制格式 IEEE 754 值(在 -(2^53 -1) and 2^53 -1 之間的數字)。而整數並沒有指定的型別。數字除了能代表浮點數以外,還有三個符號值:+Infinity-InfinityNaN(not-a-number,非數字)。

要檢查在 +/-Infinity 內可用的最大值或最小值,可以用 {{jsxref("Number.MAX_VALUE")}} 或 {{jsxref("Number.MIN_VALUE")}} 常數。從 ECMAScript 6 開始,也可以透過 {{jsxref("Number.isSafeInteger()")}}、{{jsxref("Number.MAX_SAFE_INTEGER")}}、{{jsxref("Number.MIN_SAFE_INTEGER")}} 檢查某數字是否為雙精度浮點值之間。Beyond this range, integers in JavaScript are not safe anymore and will be a double-precision floating point approximation of the value.

-- cgit v1.2.3-54-g00ecf