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

6 lines
96 B
JavaScript

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