Skip to content

Commit

Permalink
updated the Math.sin() method doc (#23584)
Browse files Browse the repository at this point in the history
Co-authored-by: Jason Ren <[email protected]>
  • Loading branch information
ikenk and jasonren0403 authored Sep 18, 2024
1 parent 05fa485 commit 6150841
Showing 1 changed file with 14 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
---
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")}}

## 语法

```plain
```js-nolint
Math.sin(x)
```

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

## 描述
### 返回值

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

`sin` 方法返回一个 -1 到 1 之间的数值,表示给定角度(单位:弧度)的正弦值。
## 描述

由于 `sin``Math` 的静态方法,所以应该像这样使用:`Math.sin()`,而不是作为你创建的 `Math` 实例的方法
由于 `sin()``Math` 的静态方法,应该总是以 `Math.sin()` 的形式,而不是作为 `Math` 对象的方法来使用它(`Math` 不是构造函数)

## 示例

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

```js
Math.sin(-Infinity); // NaN
Math.sin(-0); // -0
Math.sin(0); // 0
Math.sin(1); // 0.8414709848078965

Math.sin(Math.PI / 2); // 1
Math.sin(Infinity); // NaN
```

## 规范
Expand Down

0 comments on commit 6150841

Please sign in to comment.