From c40612041809fe289aba58aefa170bbe784aba1f Mon Sep 17 00:00:00 2001 From: t7yang Date: Mon, 10 Jan 2022 08:38:07 +0800 Subject: remove name attribute for zh-CN --- .../reference/global_objects/math/cos/index.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'files/zh-cn/web/javascript/reference/global_objects/math/cos') diff --git a/files/zh-cn/web/javascript/reference/global_objects/math/cos/index.html b/files/zh-cn/web/javascript/reference/global_objects/math/cos/index.html index 482f2fa09a..d0741e46a4 100644 --- a/files/zh-cn/web/javascript/reference/global_objects/math/cos/index.html +++ b/files/zh-cn/web/javascript/reference/global_objects/math/cos/index.html @@ -5,22 +5,22 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Math/cos ---
{{JSRef("Global_Objects", "Math")}}
-

概述

+

概述

Math.cos() 函数返回一个数值的余弦值。

-

语法

+

语法

Math.cos(x)
-

参数

+

参数

x
一个以弧度为单位的数值。
-

描述

+

描述

cos 方法返回一个 -1 到 1 之间的数值,表示角度(单位:弧度)的余弦值。

由于 cosMath 的静态方法,所以应该像这样使用:Math.cos(),而不是作为你创建的 Math 实例的方法。

-

示例

-

例子:使用 Math.cos

+

示例

+

例子:使用 Math.cos

Math.cos(0);           // 1
 Math.cos(1);           // 0.5403023058681398
 
@@ -100,7 +100,7 @@ Math.cos(2 * Math.PI); // 1
   
  
 
-

相关链接

+

相关链接

-- cgit v1.2.3-54-g00ecf