// Function Declarationasync function foo() { ... } // Function Expressionconst foo = async function () { ... } // Arrow functionconst foo = async () => { ... } ...
確定! 回上一頁