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 12 lines 220 B view raw
1function Foo() {} 2Foo.prototype.lookup = function (key) { 3 return key; 4}; 5 6const foo = new Foo(); 7for (let i = 0; i < 40000; i = i + 1) { 8 foo.lookup('a'); 9 foo.lookup('b'); 10 foo.lookup('c'); 11} 12console.log('Done!');