Files
Monkey-Test/WebDriverAgent/Inspector/node_modules/defs/other/v8-for-in-scope.js
T
2019-01-25 17:01:52 +08:00

12 lines
190 B
JavaScript

"use strict";
// v8 --harmony correctly prints 0 1 2:
var arr = [];
for (let x in [0,1,2]) {
arr.push(function() {
console.log(x);
});
}
arr.forEach(function(f) { f(); });