2018-01-09 15:36:42 +01:00

8 lines
143 B
JavaScript

for (let index = 0; index < 10; index++) {
if (index % 2) {
index+=3;
continue;
}
let fn = function () {index;};
}