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

5 lines
92 B
JavaScript

let list = [1, 2, 3, 4];
for (let i = 0, { length } = list; i < length; i++) {
list[i];
}