C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
JavaScript Number toFixed() methodThe JavaScript number toFixed() method returns the string representing a number that has exact digits after the decimal point instead of exponential notation. SyntaxThe toFixed() method is represented by the following syntax: Number.toFixed(num) Parameternum - It represents the number of digits to be appeared after decimal. ReturnA string that represents a number with exact digits after a decimal point. JavaScript Number toFixed() method exampleHere, we will understand toFixed() method through various examples. Example 1Let's see a simple example of toFixed() method. <script> var a=98.9721; document.writeln(a.toFixed()); </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.toFixed(2)); </script> Output: 98.97
Next TopicJavaScript Number
|