UNPKG

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