JavaScript: el objeto numérico

los NumberEl objeto representa una fecha numérica, ya sean enteros o números de punto flotante. En general, no necesita preocuparse porNumber objetos porque el navegador convierte automáticamente literales numéricos en instancias de la clase numérica.

Sintaxis

La sintaxis para crear un number El objeto es el siguiente:

var val = new Number(number);

En lugar de número, si proporciona un argumento que no sea un número, entonces el argumento no se puede convertir en un número, devuelve NaN (No un número).

Propiedades numéricas

Aquí hay una lista de cada propiedad y su descripción.

No Señor. Descripción de propiedad
1 VALOR MÁXIMO

El mayor valor posible que puede tener un número en JavaScript 1.7976931348623157E + 308

2 MIN_VALUE

El valor más pequeño posible que puede tener un número en JavaScript 5E-324

3 Yaya

Igual a un valor que no es un número.

4 NEGATIVE_INFINITY

Un valor menor que MIN_VALUE.

5 POSITIVE_INFINITY

Un valor mayor que MAX_VALUE

6 prototipo

Una propiedad estática del objeto Number. Utilice la propiedad de prototipo para asignar nuevas propiedades y métodos al objeto Número en el documento actual

7 constructor

Returns the function that created this object's instance. By default this is the Number object.

In the following sections, we will take a few examples to demonstrate the properties of Number.

Number Methods

The Number object contains only the default methods that are a part of every object's definition.

Sr.No. Method & Description
1 toExponential()

Forces a number to display in exponential notation, even if the number is in the range in which JavaScript normally uses standard notation.

2 toFixed()

Formats a number with a specific number of digits to the right of the decimal.

3 toLocaleString()

Returns a string value version of the current number in a format that may vary according to a browser's local settings.

4 toPrecision()

Defines how many total digits (including digits to the left and right of the decimal) to display of a number.

5 toString()

Returns the string representation of the number's value.

6 valueOf()

Returns the number's value.

In the following sections, we will have a few examples to explain the methods of Number.