Source code

Revision control

Copy as Markdown

Other Tools

// no 'arguments' binding in arrow functions
var arguments = [];
var f = () => arguments;
assertEq(f(), arguments);