From 01b0e12ba27b5069248fd09235e9a7143915ee30 Mon Sep 17 00:00:00 2001 From: Irvin Date: Wed, 16 Feb 2022 02:02:49 +0800 Subject: remove `notranslate` class in zh-CN --- .../web/javascript/reference/global_objects/math/sinh/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'files/zh-cn/web/javascript/reference/global_objects/math/sinh') diff --git a/files/zh-cn/web/javascript/reference/global_objects/math/sinh/index.html b/files/zh-cn/web/javascript/reference/global_objects/math/sinh/index.html index c9f0d376f9..1682a0ba73 100644 --- a/files/zh-cn/web/javascript/reference/global_objects/math/sinh/index.html +++ b/files/zh-cn/web/javascript/reference/global_objects/math/sinh/index.html @@ -11,7 +11,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Math/sinh

语法

-
Math.sinh(x)
+
Math.sinh(x)

参数

@@ -28,7 +28,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Math/sinh

示例

-
Math.sinh(0)      // 0
+
Math.sinh(0)      // 0
 Math.sinh(1)      // 1.1752011936438014
 Math.sinh("-1")   // -1.1752011936438014
 Math.sinh("foo")  // NaN
@@ -55,7 +55,7 @@ Math.sinh("foo")  // NaN
 
 

该函数可以使用 {{jsxref("Math.exp()")}} 函数来实现:

-
function sinh(x){
+
function sinh(x){
     return  (Math.exp(x) - Math.exp(-x)) / 2;
 }
-- cgit v1.2.3-54-g00ecf