🍄function
🚧 under construction -> named function
// function declarations
function f() { ... } // normal function
function* f() { ... } // generator function
async function f() { ... } // async function
async function* f() { ... } // async generator functionLast updated