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

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

<घंटा/>

Number ऑब्जेक्ट का toFixed() फ़ंक्शन दशमलव के बाद प्रदर्शित होने वाले अंकों की संख्या का प्रतिनिधित्व करने वाली संख्या को स्वीकार करता है और तदनुसार वर्तमान संख्या प्रदर्शित करता है।

सिंटैक्स

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

num.toFixed(num);

उदाहरण

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var num = Math.PI;
      result = num.toFixed(4);
      document.write("Fixed point notation of the given number is: " + result);
   </script>
</body>
</html>

आउटपुट

Fixed point notation of the given number is: 3.1416

उदाहरण

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var num = Math.PI;
      document.write("Fixed point notation of the given number is: " + num.toFixed(4));
      document.write("<br>");
      var num = 2.13e+15;
      document.write("Fixed point notation of the given number is: " + num.toFixed(4));
   </script>
</body>
</html>

आउटपुट

Fixed point notation of the given number is: 3.1416
Fixed point notation of the given number is: 2130000000000000.0000

  1. जावास्क्रिप्ट संख्या समारोह

    जावास्क्रिप्ट नंबर () फ़ंक्शन किसी ऑब्जेक्ट मान को उसके संबंधित संख्यात्मक मान के तर्क के रूप में परिवर्तित करता है। जावास्क्रिप्ट नंबर () फ़ंक्शन के लिए कोड निम्नलिखित है - उदाहरण <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta

  1. जावास्क्रिप्ट में किसी संख्या का गुणनखंडन करें

    हमें एक जावास्क्रिप्ट फ़ंक्शन लिखने की आवश्यकता है जो एक सकारात्मक पूर्णांक को एकमात्र तर्क के रूप में लेता है। फ़ंक्शन को उन सभी संख्याओं की एक सरणी का निर्माण और वापसी करनी चाहिए जो इनपुट संख्या को बिल्कुल विभाजित करती हैं। उदाहरण के लिए - अगर इनपुट नंबर है - const num = 12; तब आउटपुट होना चाह

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

    नंबर ऑब्जेक्ट का toLocaleString() फ़ंक्शन किसी संख्या को स्वीकार करता है और निर्दिष्ट (स्थानीय) भाषा में उसका प्रतिनिधित्व देता है। सिंटैक्स इसका सिंटैक्स इस प्रकार है num.toLocaleString(num); उदाहरण <html> <head>    <title>JavaScript Example</title> </head>