Home » JavaScript Number toFixed() Method

JavaScript Number toFixed() Method

by Online Tutorials Library

JavaScript Number toFixed() method

The JavaScript number toFixed() method returns the string representing a number that has exact digits after the decimal point instead of exponential notation.

Syntax

The toFixed() method is represented by the following syntax:

Parameter

num – It represents the number of digits to be appeared after decimal.

Return

A string that represents a number with exact digits after a decimal point.

JavaScript Number toFixed() method example

Here, we will understand toFixed() method through various examples.

Example 1

Let’s see a simple example of toFixed() method.

Test it Now

Output:

99  

Example 2

Let’s see an example to fix a number up to given decimal point.

Test it Now

Output:

98.97  

Next TopicJavaScript Number

You may also like