Skip to content

Commit

Permalink
根据要求作出了修改
Browse files Browse the repository at this point in the history
  • Loading branch information
ikenk committed Sep 17, 2024
1 parent a4f2e66 commit 6b46741
Showing 1 changed file with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
title: Math.sin()
slug: Web/JavaScript/Reference/Global_Objects/Math/sin
l10n:
sourceCommit: fcd80ee4c8477b6f73553bfada841781cf74cf46
---

{{JSRef}}

## 概述

**`Math.sin()`** 静态方法返回一个弧度的正弦值。
**`Math.sin()`** 静态方法以弧度为单位返回一个数字的正弦值。

{{EmbedInteractiveExample("pages/js/math-sin.html")}}

Expand All @@ -22,15 +22,17 @@ Math.sin(x)
- `x`
- : 一个数值(以弧度为单位)。

## 描述
## 返回值

`x` 的正弦值,介于 -1 到 1 之间(包含 -1 和 1)。如果 `x` 为 {{jsxref("Infinity")}}、`-Infinity` 或 {{jsxref("NaN")}},则返回 {{jsxref("NaN")}}。

由于 `sin``Math` 的静态方法,所以应该像这样使用:`Math.sin()`,而不是作为你创建的 `Math` 实例的方法(`Math` 不是构造函数)。
## 描述

由于 `sin()``Math` 的静态方法,应该总是以 `Math.sin()` 的形式,而不是作为 `Math` 对象的方法来使用它(`Math` 不是构造函数)。

## 示例

### 示例:使用 `Math.sin`
### 使用 Math.sin()

```js
Math.sin(-Infinity); // NaN
Expand Down

0 comments on commit 6b46741

Please sign in to comment.