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