Update ReadMe.md
[qtwebkit.git] / JSTests / microbenchmarks / string-repeat-resolving-fixed.js
blob68469a13561e737365e0bb36f5107c891251673f
1 function test(str, count)
3     var repeated = str.repeat(count);
4     // Expand the rope.
5     return repeated[0] + repeated[count >> 1] + repeated[repeated.length - 1];
8 for (var i = 0; i < 1e4; ++i)
9     test(i.toString(), 100);