blob: e09f5d6b625f0f81719456f3a32fe7e16fabb81f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
---
title: BigInt
slug: Glossary/BigInt
translation_of: Glossary/BigInt
---
<p>En {{Glossary("JavaScript")}}, <strong>BigInt </strong>es un tipo de dato numerico que puede representar números enteros en el <a href="https://en.wikipedia.org/wiki/Arbitrary-precision_arithmetic">formato de precision arbitrario</a>. En otros lenguajes de programación pueden existir diferentes tipos numéricos, por ejemplo: enteros, flotantes, dobles o bignums (numeros grandes).</p>
<h2 id="Aprende_más">Aprende más</h2>
<h3 id="Conocimientos_generales">Conocimientos generales</h3>
<ul>
<li>
<p><span>{{Interwiki("wikipedia", "Data type#Numeric_types", "Tipos numéricos")}} en Wikipedia</span></p>
</li>
</ul>
<h3 id="Referencia_tecnica">Referencia tecnica</h3>
<ul>
<li>La estructura de datos JavaScript: <code><a href="/en-US/docs/Web/JavaScript/Data_structures#BigInt_type">BigInt</a></code></li>
<li>El objeto global de JavaScript {{jsxref("BigInt")}}</li>
</ul>
|