/* *Exercisesfunctionscopes,lexicalscopes,varandlet *withinthem,andsomelongeridentifiers,andarraydestructuringin *arguments.Alsocontainssometinyatomsandgloblsaccess.
*/ const SCRIPT_1 = ` function foo(a, b, c) { var q = a * (b + c);
let bix = function (d, e) {
let x = a + d; var y = e * b; const a0 = q + x + y; for (let i = 0; i < 3; i++) {
y = a0 + Math.PI + y;
} return y;
}; function bang(d, [e, f]) {
let reallyLongIdentifierName = a + d; var y = e * b; const z = reallyLongIdentifierName + f; return z;
} return bix(1, 2) + bang(3, [4, 5, 6]);
}
foo(1, 2, 3)
`;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.