JavaScript - L'objet numérique

le Numberobjet représente une date numérique, soit des entiers, soit des nombres à virgule flottante. En général, vous n'avez pas à vous soucier deNumber objets car le navigateur convertit automatiquement les littéraux numériques en instances de la classe numérique.

Syntaxe

La syntaxe de création d'un number l'objet est le suivant -

var val = new Number(number);

À la place du nombre, si vous fournissez un argument non numérique, alors l'argument ne peut pas être converti en nombre, il renvoie NaN (Pas-un-nombre).

Propriétés des nombres

Voici une liste de chaque propriété et leur description.

N ° Sr. Propriété et description
1 VALEUR MAX

La plus grande valeur possible qu'un nombre en JavaScript peut avoir 1.7976931348623157E + 308

2 MIN_VALUE

La plus petite valeur possible qu'un nombre en JavaScript peut avoir 5E-324

3 NaN

Égal à une valeur qui n'est pas un nombre.

4 NEGATIVE_INFINITY

Une valeur inférieure à MIN_VALUE.

5 POSITIVE_INFINITY

Une valeur supérieure à MAX_VALUE

6 prototype

Une propriété statique de l'objet Number. Utilisez la propriété prototype pour attribuer de nouvelles propriétés et méthodes à l'objet Number dans le document actuel

sept 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.