Wed, 31 Dec 2014 06:55:50 +0100
Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2
1 // for-of does not skip trailing holes; the value is undefined.
2
3 var log = "";
4 for (var x of [1, 2, 3,,])
5 log += x;
6 assertEq(log, "123undefined");