Source code

Revision control

Copy as Markdown

Other Tools

// for-of on an empty slow array does nothing.
var a = [];
a.slow = true;
for (var x of a)
fail();