Sign in
webkit
/
WebKit
/
11eb14dbd76d8d03d540dd8285a36f1a3b897832
/
.
/
JSTests
/
microbenchmarks
/
string-from-char-code.js
blob: 0a5a36e2df7b13ffa2105e918f5c1fe5b9c9eac1 [
file
] [
log
] [
blame
]
var
result
=
(
function
()
{
var
result
;
for
(
var
i
=
0
;
i
<
10000000
;
++
i
)
result
=
String
.
fromCharCode
(
32
);
return
result
})();
if
(
result
!=
" "
)
throw
"Error: bad result: "
+
result
;