Javatpoint Logo

91-9990449935

 0120-4256464

JavaScript Number Object

The JavaScript number object enables you to represent a numeric value. It may be integer or floating-point. JavaScript number object follows IEEE standard to represent the floating-point numbers.

By the help of Number() constructor, you can create number object in JavaScript. For example:

If value can't be converted to number, it returns NaN(Not a Number) that can be checked by isNaN() method.

You can direct assign a number to a variable also. For example:

Test it Now

Output:

102 102.7 130000 16

JavaScript Number Constants

Let's see the list of JavaScript number constants with description.

ConstantDescription
MIN_VALUEreturns the largest minimum value.
MAX_VALUEreturns the largest maximum value.
POSITIVE_INFINITYreturns positive infinity, overflow value.
NEGATIVE_INFINITYreturns negative infinity, overflow value.
NaNrepresents "Not a Number" value.

JavaScript Number Methods

Let's see the list of JavaScript number methods with description.

MethodsDescription
toExponential(x)displays exponential value.
toFixed(x)limits the number of digits after decimal value.
toPrecision(x)formats the number with given number of digits.
toString()converts number into string.
valueOf()coverts other type of value into number.
Next TopicJavaScript Boolean