Update ReadMe.md
[qtwebkit.git] / JSTests / microbenchmarks / array-prototype-join-uninitialized.js
blobf7ce20d84c0290e194a2619984277eb0db06c08c
1 //@ runDefault
2 var N = 10 * 1024 * 1024
3 var s = Array(N).join();
4 if (s !== ",".repeat(N - 1))
5     throw("Unexpected result of Array.prototype.join()");