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
proto.some = function some (lambda) {
// arguments[+1] is to fool google closure compiler into NOT adding a function argument!
return array.iterate(this, lambda, function (val) { return !val; }, arguments[+1]);
};
My concern is around the function after lambda which returns !val. Any clue?
The text was updated successfully, but these errors were encountered:
Array.some seem to work incorrectly in IE8.
I'm trying to understand the array.some code
My concern is around the function after lambda which returns
!val
. Any clue?The text was updated successfully, but these errors were encountered: