Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> Javascript

जावास्क्रिप्ट में Math.tanh () फ़ंक्शन

<घंटा/>

गणित वस्तु का tanh () फ़ंक्शन एक कोण (रेडियन में) स्वीकार करता है और उसका अतिपरवलयिक स्पर्शरेखा मान देता है।

सिंटैक्स

इसका सिंटैक्स इस प्रकार है

Math.tanh(90)

उदाहरण

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var result = Math.tanh(90);
      document.write("Hyperbolic tangent value of the given angle: "+result);
   </script>
</body>
</html>

आउटपुट

Hyperbolic tangent value of the given angle: 1

  1. Math.sinh () जावास्क्रिप्ट में कार्य करता है

    Math ऑब्जेक्ट का sinh () फ़ंक्शन एक कोण (रेडियन में) स्वीकार करता है और उसका हाइपरबोलिक साइन मान लौटाता है। सिंटैक्स इसका सिंटैक्स इस प्रकार है Math.sinh(90) उदाहरण <html> <head>    <title>JavaScript Example</title> </head> <body>    <scrip

  1. जावास्क्रिप्ट में Math.sin () फ़ंक्शन

    Math ऑब्जेक्ट का sin() फ़ंक्शन एक कोण (रेडियन में) स्वीकार करता है और अपना साइन मान लौटाता है। सिंटैक्स इसका सिंटैक्स इस प्रकार है Math.sin(90) उदाहरण <html> <head>    <title>JavaScript Example</title> </head> <body>    <script type="t

  1. जावास्क्रिप्ट में Math.cosh () फ़ंक्शन

    मैथ ऑब्जेक्ट का कोश () फ़ंक्शन एक कोण (रेडियन में) स्वीकार करता है और उसका हाइपरबोलिक कोसाइन मान लौटाता है। सिंटैक्स इसका सिंटैक्स इस प्रकार है Math.cosh(90) उदाहरण <html> <head>    <title>JavaScript Example</title> </head> <body>    <scrip