Skip to content

Commit

Permalink
unify
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonren0403 authored Dec 20, 2024
1 parent d7f18f5 commit fa9e3db
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ l10n:

{{JSRef}}

**`Math.atanh()`** 靜態方法返回一個數字的反雙曲正切值,也就是說,
**`Math.atanh()`** 靜態方法回傳一個數字的反雙曲正切值,也就是說,

<!-- prettier-ignore-start -->
<math display="block">
Expand All @@ -28,13 +28,13 @@ Math.atanh(x)
- `x`
- : 一個介於 -1 和 1 之間的數字(包含邊界)。

### 返回值
### 回傳值

`x` 的反雙曲正切值。如果 `x` 為 1,返回 {{jsxref("Infinity")}}。如果 `x` 為 -1,返回 `-Infinity`。如果 `x` 小於 -1 或大於 1,返回 {{jsxref("NaN")}}。

## 描述

由於 `atanh()``Math` 的靜態方法,你必須使用 `Math.atanh()` 來呼叫它,而不是呼叫你所建立的 `Math` 物件的方法(`Math` 不是建構子)。
由於 `atanh()``Math` 的靜態方法,你必須使用 `Math.atanh()` 來呼叫它,而非呼叫你所建立的 `Math` 物件的方法(`Math` 並非建構子)。

## 範例

Expand Down

0 comments on commit fa9e3db

Please sign in to comment.