repo.or.cz
/
qtwebkit.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Update ReadMe.md
[qtwebkit.git]
/
JSTests
/
microbenchmarks
/
number-to-string-with-radix-10.js
blob
9c083cb4b6fbabe67fdf5c132d0e5d490c5f81c4
1
function test()
2
{
3
for (var i = 0; i < 10; ++i)
4
var result = i.toString(10);
5
return result;
6
}
7
noInline(test);
8
9
for (var i = 0; i < 1e4; ++i)
10
test();