Files
babel/test/fixtures/transformation/let-scoping/initializer-for-3/exec.js
2014-10-25 09:09:55 +11:00

6 lines
96 B
JavaScript

for (let x = 1, y = x + 1; x < 10 && y != 0; x ++, y *= 2) {
if (y > 300) {
continue;
}
}