• Asignatura: Física
  • Autor: martin324
  • hace 8 años

Necesito ayuda con esta hoja de mi Ada de física
Necesito que esté bien explicado,gracias

Adjuntos:

Respuestas

Respuesta dada por: cakiprtorres
0

Respuesta:

El objeto Number es un objeto envolvente que permite trabajar con valores numéricos. Un objeto Number se crea utilizando el constructor Number() . Un objeto número de tipo primitivo se crea utilizando la función Number().

Explicación:

Todas las instancias Number heredan de Number.prototype. El objeto prototipo del constructor de Number puede modificarse para aceptar a todas las instancias de Number.

Métodos

Number.prototype.toExponential()

Returns a string representing the number in exponential notation.

Number.prototype.toFixed()

Returns a string representing the number in fixed-point notation.

Number.prototype.toLocaleString()

Returns a string with a language sensitive representation of this number. Overrides the Object.prototype.toLocaleString() method.

Number.prototype.toPrecision()

Returns a string representing the number to a specified precision in fixed-point or exponential notation.

Number.prototype.toSource()  

Returns an object literal representing the specified Number object; you can use this value to create a new object. Overrides the Object.prototype.toSource() method.

Number.prototype.toString()

Returns a string representing the specified object in the specified radix (base). Overrides the Object.prototype.toString() method.

Number.prototype.valueOf()

Returns the primitive value of the specified object. Overrides the Object.prototype.valueOf() method.

Ejemplos

Number.isNaN()

Determine whether the passed value is NaN.

Number.isFinite()

Determine whether the passed value is a finite number.

Number.isInteger()

Determina si un numero es entero.

Number.isSafeInteger()

Determine whether the passed value is a safe integer (number between -(253 - 1) and 253 - 1).

Number.toInteger()  

Used to evaluate the passed value and convert it to an integer (or Infinity), but has been removed.

Number.parseFloat()

The value is the same as parseFloat() of the global object.

Number.parseInt()

The value is the same as parseInt() of the global object.

Number.EPSILON

The smallest interval between two representable numbers.

Number.MAX_SAFE_INTEGER

The maximum safe integer in JavaScript (253 - 1).

Number.MAX_VALUE

El número más grande representable.

Number.MIN_SAFE_INTEGER

The minimum safe integer in JavaScript (-(253 - 1)).

Number.MIN_VALUE

El número más pequeño representable - que es, the positive number closest to zero (without actually being zero).

Number.NaN

Valor especial "no es número" NaN.

Number.NEGATIVE_INFINITY

Valor especial para representar infinitos negativos; retorno de un desborde de pila overflow.

Number.POSITIVE_INFINITY

Valor especial para representar infinitos positivos; retorno de un desborde de pila overflow.

Number.prototype

Permite la adición de propiedades a un objeto Number.

Number.EPSILON

The smallest interval between two representable numbers.

Number.MAX_SAFE_INTEGER

The maximum safe integer in JavaScript (253 - 1).

Number.MAX_VALUE

El número más grande representable.

Number.MIN_SAFE_INTEGER

The minimum safe integer in JavaScript (-(253 - 1)).

Number.MIN_VALUE

El número más pequeño representable - que es, the positive number closest to zero (without actually being zero).

Number.NaN

Valor especial "no es número" NaN.

Number.NEGATIVE_INFINITY

Valor especial para representar infinitos negativos; retorno de un desborde de pila overflow.

Number.POSITIVE_INFINITY

Valor especial para representar infinitos positivos; retorno de un desborde de pila overflow.

Number.prototype

Permite la adición de propiedades a un objeto Number.

Number.EPSILON

The smallest interval between two representable numbers.

Number.MAX_SAFE_INTEGER

The maximum safe integer in JavaScript (253 - 1).

Number.MAX_VALUE

El número más grande representable.

Number.MIN_SAFE_INTEGER

The minimum safe integer in JavaScript (-(253 - 1)).

Number.MIN_VALUE

El número más pequeño representable - que es, the positive number closest to zero (without actually being zero).

Number.NaN

Valor especial "no es número" NaN.

Number.NEGATIVE_INFINITY

Valor especial para representar infinitos negativos; retorno de un desborde de pila overflow.

Number.POSITIVE_INFINITY

Valor especial para representar infinitos positivos; retorno de un desborde de pila overflow.

Number.prototype

Permite la adición de propiedades a un objeto Number.

Preguntas similares