MIRROR: javascript for 馃悳's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 5 lines 122 B view raw
1const funcs = []; 2for (let i = 0; i < 3; i++) { 3 funcs.push(() => i); 4} 5console.log(funcs[0](), funcs[1](), funcs[2]());