2014-11-07 12:33:35 +11:00

6 lines
73 B
JavaScript

function test() {
for (var i of array) {}
for (let i of array) {}
}