Source code

Revision control

Copy as Markdown

Other Tools

function fn() {
return Math.max.apply(Math, [1,2,3]);
}
assertEqual(fn(), 3);
test(fn);