Welcome to mirror list, hosted at ThFree Co, Russian Federation.

string_creation.js « benchmark - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7f81ec1090e3c76983232f5066769907f4f069f4 (plain)
1
2
3
4
5
6


for (var i = 0; i < 9e7; i++) {
  s = '01234567890';
  s[1] = "a";
}