नंबर ऑब्जेक्ट का toPrecision() फ़ंक्शन सटीकता का प्रतिनिधित्व करने वाले मान को स्वीकार करता है और निर्दिष्ट परिशुद्धता के लिए एक (वर्तमान) संख्या का प्रतिनिधित्व देता है।
सिंटैक्स
इसका सिंटैक्स इस प्रकार है
num.toPrecision(num);
उदाहरण
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var num = 3325.462; result = num.toPrecision(2); document.write("Result: " + result); </script> </body> </html>
आउटपुट
Result: 3.3e+3
उदाहरण
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var num = 3325.462; result = num.toPrecision(); document.write("Result: " + result); </script> </body> </html>
आउटपुट
Result: 3325.462