Sign in
webkit
/
WebKit
/
3fa74877b7c536983f160d5f9f2d7ff9b7539e24
/
.
/
JSTests
/
microbenchmarks
/
array-prototype-join-uninitialized.js
blob: f7ce20d84c0290e194a2619984277eb0db06c08c [
file
] [
log
] [
blame
]
//@ runDefault
var
N
=
10
*
1024
*
1024
var
s
=
Array
(
N
).
join
();
if
(
s
!==
","
.
repeat
(
N
-
1
))
throw
(
"Unexpected result of Array.prototype.join()"
);