A continuación se muestra el ejemplo de la propiedad del infinito .
- Ejemplo:
<script>
function
test() {
document.write(
-3.645464512375121213E+1203466 +
"<br>"
+ 3.4548643575312453512345E+1203466);
}
test();
</script>
- Producción:
-Infinity Infinity
La propiedad Infinity solía mostrar Infinity cuando se excede el límite superior del número de punto flotante e -Infinity cuando se excede el límite inferior del número de punto flotante. Aquí, Infinito denota Infinito positivo e -Infinito representa Infinito negativo.
Sintaxis:
floating point no.
Valor devuelto: Devuelve Infinity para representar Positive Infinity e -Infinity para representar Negative Infinity.
Más código de ejemplo para la propiedad anterior son los siguientes:
Programa 1:
<!DOCTYPE html> <html> <head> <style> h1 { color: green; } </style> </head> <body> <center> <h1> Geeks </h1> <button onclick="test()"> Press </button> <p> 3.4576917263943217389012348562315E+1203466 is the limit of a Floating Point Number.</p> <h4> Clicking the Press button will showcase the Javascript Infinity Property. </h4> <p id="gfg"></p> <script> function test() { document.getElementById( "gfg").innerHTML = -3.4576917263943217389012348562315E+1203466 + "<br>" + 3.4576917263943217389012348562315E+1203466; } </script> </center> </body> </html>
Producción:
Navegadores compatibles:
Publicación traducida automáticamente
Artículo escrito por riarawal99 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA