You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adding the 'Array.prototype.find' script - under IE11 - causes 'find' to be returned as a key when looping through any array, even an empty one.
var x = []; for( var key in x ) console.log(key);
The above code logs 'find' to the console, only when the shim is added however. I suspect looking at the code that other array shims will have a similar impact.
The text was updated successfully, but these errors were encountered:
Adding the 'Array.prototype.find' script - under IE11 - causes 'find' to be returned as a key when looping through any array, even an empty one.
var x = []; for( var key in x ) console.log(key);
The above code logs 'find' to the console, only when the shim is added however. I suspect looking at the code that other array shims will have a similar impact.
The text was updated successfully, but these errors were encountered: