A continuación se muestra el ejemplo de la propiedad Number Positive_INFINITY.
- Ejemplo:
<script>
var
a = Number.POSITIVE_INFINITY;
document.write(a * 10);
</script>
- Producción:
Infinity
En javascript Number.POSITIVE_INFINITY representa el mayor valor positivo, es decir, infinito positivo. En realidad, el valor de Number.POSITIVE_INFINITY es el mismo que el valor de la propiedad Infinity del objeto global .
Sintaxis:
Se puede asignar a una variable de la siguiente manera.
var a = Number.POSITIVE_INFINITY
Ahora que sabemos qué es Number.POSITIVE_INFINITY , veamos algunos ejemplos para ver el resultado de algunas operaciones aritméticas realizadas en Number.POSITIVE_INFINITY.
- Ejemplo 1: cuando multiplicamos cualquier número positivo, incluido Number.POSITIVE_INFINITY por Number.POSITIVE_INFINITY, el resultado es Number.POSITIVE_INFINITY .
<script>
var
a = Number.POSITIVE_INFINITY;
document.write(a * 2);
</script>
Producción:
Infinity
- Ejemplo 2: Cuando multiplicamos cualquier número negativo con Number.POSITIVE_INFINITY el resultado es infinito negativo .
<script>
var
a = Number.POSITIVE_INFINITY;
document.write(a * -2);
<script>
Producción:
Infinity
- Ejemplo 3: Cuando dividimos cualquier número positivo o negativo por Number.POSITIVE_INFINITY el resultado es 0 .
<script>
var
a = Number.POSITIVE_INFINITY;
document.write(2 / a);
</script>
Producción:
0
- Ejemplo 4: cuando multiplicamos Number.POSITIVE_INFINITY por 0 , el resultado es NaN .
<script>
var
a = Number.POSITIVE_INFINITY;
document.write(a * 0);
</script>
Producción:
NaN
- Ejemplo 5: cuando dividimos Number.POSITIVE_INFINITY por cualquier número negativo excepto Number.NEGATIVE_INFINITY , el resultado es Number.NEGATIVE_INFINITY.
<script>
var
a = Number.POSITIVE_INFINITY;
document.write(a / -2);
</script>
Producción:
Infinity
- Ejemplo 6: cuando dividimos Number.POSITIVE_INFINITY por cualquier número positivo excepto Number.POSITIVE_INFINITY , el resultado es Number.POSITIVE_INFINITY .
<script>
var
a = Number.POSITIVE_INFINITY;
document.write(a / 2);
</script>
Producción:
Infinity
- Ejemplo 7: cuando dividimos Number.POSITIVE_INFINITY por NEGATIVE_INFINITY o POSITIVE_INFINITY , el resultado es NaN .
<script>
var
a = Number.POSITIVE_INFINITY;
var
b = Number.NEGATIVE_INFINITY;
document.write(a / b);
</script>
Producción:
NaN
Navegadores compatibles:
- Google Chrome
- explorador de Internet
- Firefox
- safari de manzana
- Ópera
Publicación traducida automáticamente
Artículo escrito por parasmadan15 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA