I am trying some example in ECMAScript 6. That is working differently compared to other browsers. This returns true
in Firefox, but it returns false
in IE. Why is this working different in Internet Explorer?
let callbacks = []
for (let i = 0; i <= 2; i++) {
callbacks[i] = function () { console.log(i); return i * 2 }
}
console.log(callbacks[0]() === 0);
console.log(callbacks[1]() === 2);
console.log(callbacks[2]() === 4);
According to caniuse.com IE11 kind of supports let:
let variables are not bound separately to each iteration of for loops
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With