aboutsummaryrefslogtreecommitdiff
path: root/files/es/glossary/promise/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/es/glossary/promise/index.html')
-rw-r--r--files/es/glossary/promise/index.html30
1 files changed, 30 insertions, 0 deletions
diff --git a/files/es/glossary/promise/index.html b/files/es/glossary/promise/index.html
new file mode 100644
index 0000000000..867e3614d4
--- /dev/null
+++ b/files/es/glossary/promise/index.html
@@ -0,0 +1,30 @@
+---
+title: Promesa
+slug: Glossary/Promise
+tags:
+ - Asíncrono
+ - Glosario
+ - Promesa
+ - Promesas
+translation_of: Glossary/Promise
+---
+<p>Una <strong>{{jsxref("Promesa")}}</strong> es un {{Glossary("objeto")}} devuelto por una {{Glossary("función")}} que no ha completado su tarea. La promesa representa literalmente una promesa creada por una función a la que le llegará un resultado en un futuro.</p>
+
+<p>Cuando la función termina su tarea {{Glossary("asynchronous", "de forma asíncrona")}}, una función del objeto "promesa" será ejecutada.</p>
+
+<h2 id="Saber_más">Saber más</h2>
+
+<p>Para obtener más información, echa un vistazo a los siguientes enlaces</p>
+
+<h3 id="Conocimientos_generales">Conocimientos generales</h3>
+
+<ul>
+ <li>{{interwiki("wikipedia", "Valor_futuro_(informática)", "Valor futuro")}}</li>
+</ul>
+
+<h3 id="Referencias_técnicas">Referencias técnicas</h3>
+
+<ul>
+ <li>{{jsxref("Promise")}} in the <a href="/en-US/docs/Web/JavaScript/Reference">JavaScript Reference</a>.</li>
+ <li><a href="/en-US/docs/Web/JavaScript/Guide/Using_promises">Using promises</a></li>
+</ul>