UNPKG

nectarjs

Version:

Javascript's God Mode. No VM. No Bytecode. No GC. Just native binaries.

10 lines (8 loc) 215 B
function test(arg) { console.log(arg); } test("Direct call"); test.apply(null, ["Apply"]); console.log("Math.min:", Math.min); console.log("Math.min.apply(null, [4,5,6,1,9]):", Math.min.apply(null, [4,5,6,1,9]));