From 91bca910871ea185e7970937a9739dbbf3d223a9 Mon Sep 17 00:00:00 2001 From: alattalatta Date: Mon, 26 Jul 2021 22:51:29 +0900 Subject: Remove hidden/noinclude from JS docs (#1583) --- .../web/javascript/reference/statements/async_function/index.html | 6 ------ 1 file changed, 6 deletions(-) (limited to 'files/ko/web/javascript/reference/statements/async_function') diff --git a/files/ko/web/javascript/reference/statements/async_function/index.html b/files/ko/web/javascript/reference/statements/async_function/index.html index ca85f0deef..ab34076481 100644 --- a/files/ko/web/javascript/reference/statements/async_function/index.html +++ b/files/ko/web/javascript/reference/statements/async_function/index.html @@ -13,16 +13,10 @@ translation_of: Web/JavaScript/Reference/Statements/async_function

async function 선언은 {{jsxref("Global_Objects/AsyncFunction","AsyncFunction")}}객체를 반환하는 하나의 비동기 함수를 정의합니다. 비동기 함수는 이벤트 루프를 통해 비동기적으로 작동하는 함수로, 암시적으로 {{jsxref("Promise")}}를 사용하여 결과를 반환합니다. 그러나 비동기 함수를 사용하는 코드의 구문과 구조는, 표준 동기 함수를 사용하는것과 많이 비슷합니다.

-

또한 {{jsxref("Operators/async_function", "async function expression", "", 1)}}을 사용해서 async function을 선언할 수 있습니다.

-
{{EmbedInteractiveExample("pages/js/statement-async.html", "taller")}}
- -

Syntax

async function name([param[, param[, ... param]]]) {
-- 
cgit v1.2.3-54-g00ecf