blob: 13b80bedcb810a70e93e86551a41e924ad9d0e1c [file] [log] [blame]
function test() {
var arr = [,,];
var count = 0;
for (var item of arr)
count += (item === undefined);
return count === 2;
}
if (!test())
throw new Error("Test failed");