- GitHub Staff
- @belinburgh
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function t1() { | |
var ary = []; | |
for (var i = 0; i < 10000000; ++i) { | |
ary[i] = i; | |
} | |
return ary; | |
} | |
function t2() { | |
var ary = []; |
NewerOlder