There is an article AsyncFunction - JavaScript on MDN. It shows the following snippet:
new AsyncFunction([arg1[, arg2[, ...argN]],] functionBody)
Yet in both Mozzila Firefox 55 and Google Chrome, this constructor is not defined at all:
I found out that (async function() {}).constructor
really is AsyncFunction
, but why can't I see it in global scope?