Skip to content

Commit

Permalink
[ko]: add index.md for web/glossary/promise (#16223)
Browse files Browse the repository at this point in the history
* [add]: add index.md for web/glossary/promise

* [ko]: revise index.md

Co-authored-by: hochan Lee <[email protected]>

---------

Co-authored-by: hochan Lee <[email protected]>
  • Loading branch information
IMHOJEONG and hochan222 authored Oct 25, 2023
1 parent cc07fbb commit 3e45643
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions files/ko/glossary/promise/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
title: 프로미스 (Promise)
slug: Glossary/Promise
l10n:
sourceCommit: ada5fa5ef15eadd44b549ecf906423b4a2092f34
---

{{GlossarySidebar}}

**{{jsxref("Promise")}}** 는 아직 작업이 완료되지 않은 {{Glossary("function", "함수")}}에 의해 반환된 {{Glossary("object", "객체")}}입니다. 프로미스는 문자 그대로 프로미스 객체를 통해 결과를 반환할 함수에 의해 만들어진 프로미스를 나타냅니다.

호출된 함수가 작업을 {{Glossary("asynchronous", "비동기적으로")}} 완료하면 원래 호출자에게 작업이 완료되었음을 알리기 위해 해결(또는 이행 또는 완료) 핸들러라고 불리는 프로미스 객체의 함수가 호출됩니다.

## 같이 보기

- [Futures 및 promises 객체](https://en.wikipedia.org/wiki/Futures_and_promises)
- [JavaScript 참고서](/ko/docs/Web/JavaScript/Reference)의 {{jsxref("Promise")}}.
- [프로미스 사용하기](/ko/docs/Web/JavaScript/Guide/Using_promises)

0 comments on commit 3e45643

Please sign in to comment.