mirror of
https://github.com/wu736139669/Monkey-Test.git
synced 2026-08-05 05:55:46 +00:00
12 lines
190 B
JavaScript
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(); });
|