Source code

Revision control

Copy as Markdown

Other Tools

function f(...rest) {
function nested() {
return arguments.length;
}
return nested;
}
assertEq(f()(1, 2, 3), 3);