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
This is actually a rather infamous bug: IE <= 8 treats undefined array elements as elisions—it's as if you wrote _.include(Array(1), undefined), which is false in all browsers. Nothing much to be done, I'm afraid.
Reproduce the issue with the following in developer tools console:
_.include([undefined],undefined)
Expected result: true
Result in IE 8: false
The text was updated successfully, but these errors were encountered: