domingo, 20 de septiembre de 2015

JavaScript - El número de objetos

El número de objeto representa la fecha numérica, ya sea enteros o números de coma flotante. En general, usted no tiene que preocuparse por Número de objetos ya que el navegador se convierte automáticamente literales numéricos para instancias de la clase número.

Sintaxis

La sintaxis para la creación de un número de objetos es el siguiente -
var val = new Number(number);
En el lugar de número, si usted proporciona ningún argumento que no es el número, entonces el argumento no se puede convertir en un número, devuelve NaN (No-a-Number).

Propiedades Número

Aquí está una lista de cada propiedad y su descripción.
PropiedadDescripción
El mayor valor posible un número en JavaScript puede tener 1.7976931348623157E + 308
El más pequeño valor posible un número en JavaScript puede tener 5E-324
Igual a un valor que no es un número.
Un valor que es menor que MIN_VALUE.
Un valor que es mayor que MAX_VALUE
Una propiedad estática del objeto Number. Utilice la propiedad prototipo para asignar nuevas propiedades y métodos al objeto Number en el documento actual
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.
MethodDescription
Forces a number to display in exponential notation, even if the number is in the range in which JavaScript normally uses standard notation.
Formats a number with a specific number of digits to the right of the decimal.
Returns a string value version of the current number in a format that may vary according to a browser's local settings.
Defines how many total digits (including digits to the left and right of the decimal) to display of a number.
Returns the string representation of the number's value.
Returns the number's value.
In the following sections, we will have a few examples to explain the methods of Number.

No hay comentarios:

Publicar un comentario