Get to know MDN better
This feature is well established and works across many devices and browser versions. It’s been available across browsers since April 2017.
The async function keywords can be used to define an async function inside an expression.
You can also define async functions using the async function declaration or the arrow syntax.
Note: An expression statement cannot begin with the keywords async function to avoid ambiguity with an async function declaration. The async function keywords only begin an expression when they appear in a context that cannot accept statements.
The function name. Can be omitted, in which case the function is anonymous. The name is only local to the function body.
paramN OptionalThe name of a formal parameter for the function. For the parameters' syntax, see the Functions reference.
statements OptionalThe statements which comprise the body of the function.
An async function expression is very similar to, and has almost the same syntax as, an async function declaration. The main difference between an async function expression and an async function declaration is the function name, which can be omitted in async function expressions to create anonymous functions. An async function expression can be used as an IIFE (Immediately Invoked Function Expression) which runs as soon as it is defined, allowing you to mimic top-level await. See also the chapter about functions for more information.
An async IIFE allows you to use await and for...await in contexts where top-level await is not available. Here we use an arrow function to define the IIFE, but async function expressions can also be used.
| ECMAScript® 2027 Language Specification # sec-async-function-definitions |
Enable JavaScript to view this browser compatibility table.
This page was last modified on Jul 8, 2025 by MDN contributors.
Your blueprint for a better internet.
Visit Mozilla Corporation’s not-for-profit parent, the Mozilla Foundation.
Portions of this content are ©1998–2026 by individual mozilla.org contributors. Content available under a Creative Commons license.