C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
JavaScript Number toPrecision() methodThe JavaScript number toPrecision() method returns the string representing a number of specified precision. SyntaxThe toPrecision() method is represented by the following syntax: Number.toPrecision(digits) Parameterdigits - It is optional. It represent the digits up to which the number must precise. ReturnA string that represents a number with exact digits after a decimal point JavaScript Number toPrecision() method exampleHere, we will understand toPrecision() method through various examples. Example 1Let's see a simple example of toPrecision() method. <script> var a=98.9721; document.writeln(a.toPrecision()); </script> Output: 99 Example 2Let's see an example to fix a number up to given decimal point. <script> var a=98.9721; document.writeln(a.toPrecision(2)); </script> Output: 98.97
Next TopicJavaScript Number
|