UNPKG

190 BJavaScriptView Raw
1"use strict";
2
3// v8 --harmony correctly prints 0 1 2:
4
5var arr = [];
6for (let x in [0,1,2]) {
7 arr.push(function() {
8 console.log(x);
9 });
10}
11arr.forEach(function(f) { f(); });