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 a _indexOf function to the Array.prototype breaks code like "for (var i in myArray)" which suddenly iterate over the unexpected "_indexOf" property.
I changed all "someArray._indexOf(v)" to "$.inArray(v, someArray) >= 0" on my website.
The text was updated successfully, but these errors were encountered:
Adding a _indexOf function to the Array.prototype breaks code like "for (var i in myArray)" which suddenly iterate over the unexpected "_indexOf" property.
I changed all "someArray._indexOf(v)" to "$.inArray(v, someArray) >= 0" on my website.
The text was updated successfully, but these errors were encountered: