Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ko]: add index.md for web/glossary/promise #16223

Merged
merged 2 commits into from
Oct 25, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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)