En JavaScript, NEGATIVE_INFINITY es una propiedad del objeto numérico que representa el infinito negativo (-Infinito). Se puede explicar como un número que es más bajo que cualquier otro número. Es una propiedad de sólo lectura.
Sintaxis: NEGATIVE_INFINITY es una propiedad estática del objeto NUMBER y, por lo tanto, siempre se usa con referencia a él.
Number.NEGATIVE_INFINITY
Valor devuelto:
-Infinity
Ejemplo 1:
<!DOCTYPE html> <html> <head> <title>Number NEGATIVE_INFINITY property </title> </head> <body> <script type="text/javascript"> var num=100; document.writeln(num.NEGATIVE_INFINITY); document.writeln(Number.NEGATIVE_INFINITY); </script> </body> </html>
Producción:
undefined -Infinity
Ejemplo 2: El siguiente programa muestra cómo cualquier número multiplicado por infinito negativo es el mismo infinito negativo.
<!DOCTYPE html> <html> <head> <title>Number NEGATIVE_INFINITY property </title> </head> <body> <script type="text/javascript"> var num=100*Number.NEGATIVE_INFINITY; document.write(num); </script> </body> </html>
Producción:
-Infinity
Navegadores compatibles:
- Chrome 1 y superior
- Borde 12 y superior
- Firefox 1 y superior
- Internet Explorer 4 y superior
- Ópera 3 y superior
- safari 1 y superior
Publicación traducida automáticamente
Artículo escrito por vanshikagoyal43 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA