blob: 2a0a716eebbb6b89432fbd88fa5ff57dc03c0f00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
---
title: Infinity
slug: Web/JavaScript/Referencia/Objetos_globales/Infinity
tags:
- JavaScript
translation_of: Web/JavaScript/Reference/Global_Objects/Infinity
---
<div>
{{jsSidebar("Objects")}}</div>
<h2 id="Resumen">Resumen</h2>
<p>La propiedad global <strong><code>Infinity </code></strong>es un valor numérico que representa el infinito.</p>
<p>{{js_property_attributes(0,0,0)}}</p>
<h2 id="Sintaxis">Sintaxis</h2>
<pre class="brush: js">Infinity</pre>
<h2 id="Description" name="Description" style="padding-top: 0px; padding-left: 0px; border: 0px; line-height: 24px;">Description</h2>
<p><code>Infinity </code>es una del objeto global, es decir, esta es una variable de alcance global.</p>
<p>El valor inicial de <code>Infinity</code> es {{jsxref("Number.POSITIVE_INFINITY")}}. El valor de <code>Infinity</code> (infinito positivo) es mayor que cualquier otro numero incluido el mismo. Este valor se comporta matematicamente como el infinito matemático; por ejemplo, cualquier numero multiplicado por <code>Infinity</code> da como resultado <code>Infinity</code>, y cualquier numero divido por <code>Infinity</code> da como resultado cero.</p>
<p>Para la especificación ECMAScript 5, <code>Infinity </code>es de solo lectura (implementado en JavaScript 1.8.5 / Firefox 4).</p>
<h2 id="Especificaciones">Especificaciones</h2>
<table class="standard-table" style="">
<tbody>
<tr>
<th scope="col" style="font-style: inherit;">Especificación</th>
<th scope="col" style="font-style: inherit;">Estado</th>
<th scope="col" style="font-style: inherit;">Comentario</th>
</tr>
<tr>
<td>ECMAScript 1ra edición.</td>
<td>Estándar</td>
<td>Definición inicial. Implementada en JavaScript 1.3</td>
</tr>
<tr>
<td>{{SpecName('ES5.1', '#sec-15.1.1.2', 'Infinity')}}</td>
<td>{{Spec2('ES5.1')}}</td>
<td> </td>
</tr>
<tr>
<td>{{SpecName('ES6', '#sec-value-properties-of-the-global-object-infinity', 'Infinity')}}</td>
<td>{{Spec2('ES6')}}</td>
<td> </td>
</tr>
</tbody>
</table>
<h2 id="Compatibilidad_con_navegadores" style="margin-bottom: 20px; padding-top: 0px; padding-left: 0px; font-size: 28px; border: 0px; line-height: 28px;">Compatibilidad con navegadores</h2>
<p style="padding-top: 0px; padding-left: 0px; border: 0px;">{{ CompatibilityTable() }}</p>
<div id="compat-desktop" style="padding-top: 0px; padding-left: 0px; border: 0px;">
<table class="compat-table" style="">
<tbody>
<tr>
<th style="font-style: inherit; line-height: 16px;">Característica</th>
<th style="font-style: inherit; line-height: 16px;">Chrome</th>
<th style="font-style: inherit; line-height: 16px;">Firefox (Gecko)</th>
<th style="font-style: inherit; line-height: 16px;">Internet Explorer</th>
<th style="font-style: inherit; line-height: 16px;">Opera</th>
<th style="font-style: inherit; line-height: 16px;">Safari</th>
</tr>
<tr>
<td>Soporte básico</td>
<td>(Si)</td>
<td>(Si)</td>
<td>(Si)</td>
<td>(Si)</td>
<td>(Si)</td>
</tr>
</tbody>
</table>
</div>
<div id="compat-mobile" style="padding-top: 0px; padding-left: 0px; border: 0px;">
<table class="compat-table" style="">
<tbody>
<tr>
<th style="font-style: inherit; line-height: 16px;">Característica</th>
<th style="font-style: inherit; line-height: 16px;">Android</th>
<th style="font-style: inherit; line-height: 16px;">Chrome for Android</th>
<th style="font-style: inherit; line-height: 16px;">Firefox Mobile (Gecko)</th>
<th style="font-style: inherit; line-height: 16px;">IE Mobile</th>
<th style="font-style: inherit; line-height: 16px;">Opera Mobile</th>
<th style="font-style: inherit; line-height: 16px;">Safari Mobile</th>
</tr>
<tr>
<td>Soporte básico</td>
<td>(Si)</td>
<td>(Si)</td>
<td>(Si)</td>
<td>(Si)</td>
<td>(Si)</td>
<td>(Si)</td>
</tr>
</tbody>
</table>
</div>
<h2 id="See_also" name="See_also" style="margin-bottom: 20px; padding-top: 0px; padding-left: 0px; font-size: 28px; border: 0px; line-height: 28px;">Ver también</h2>
<ul>
<li>{{jsxref("Number.NEGATIVE_INFINITY")}}</li>
<li>{{jsxref("Number.POSITIVE_INFINITY")}}</li>
</ul>
|