Async Expression

Async expressions can be used to not implicitely await. It wraps the value in Promise and returns it immediately.

Structure

AsyncExpr = 'async' Expression

Example

async asyncFunction()

References