Sign in
webkit
/
WebKit
/
8f44c6a7d67fb77bce0518af9c582986cd4b9e10
/
.
/
JSTests
/
microbenchmarks
/
string-concat-object.js
blob: 7243c41d994dd4b360bcfdf83c656c537ccffeef [
file
] [
log
] [
blame
]
function
foo
(
a
)
{
return
"foo"
+
new
String
(
a
)
+
"bar"
;
}
var
result
;
for
(
var
i
=
0
;
i
<
100000
;
++
i
)
result
=
foo
(
"hello"
);
if
(
result
!=
"foohellobar"
)
throw
"Error: bad result: "
+
result
;