From d44f5032d0f53256b2d5aef505d6b593fd3cd158 Mon Sep 17 00:00:00 2001 From: Irvin Date: Wed, 16 Feb 2022 02:14:18 +0800 Subject: fix yari h2m dry run errors (zh-CN) --- .../reference/global_objects/math/sinh/index.html | 54 ++-------------------- 1 file changed, 3 insertions(+), 51 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 899783ca75..44f03bf2e7 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 @@ -24,7 +24,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Math/sinh

双曲正弦的图像如下:

-

+

示例

@@ -55,61 +55,13 @@ Math.sinh("foo") // NaN

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

-
function sinh(x){
+
function sinh(x){
     return  (Math.exp(x) - Math.exp(-x)) / 2;
 }

浏览器兼容性

-

{{ CompatibilityTable() }}

- -
- - - - - - - - - - - - - - - - - - - -
FeatureChromeFirefox (Gecko)Internet ExplorerOperaSafari
Basic support{{CompatNo}}{{CompatGeckoDesktop("25")}}{{CompatNo}}{{CompatNo}}{{CompatNo}}
-
- -
- - - - - - - - - - - - - - - - - - - - - -
FeatureAndroidChrome for AndroidFirefox Mobile (Gecko)IE MobileOpera MobileSafari Mobile
Basic support{{CompatNo}}{{CompatNo}}{{CompatGeckoMobile("25")}}{{CompatNo}}{{CompatNo}}{{CompatNo}}
-
+{{Compat}}

相关链接

-- cgit v1.2.3-54-g00ecf