Created
March 28, 2012 12:15
-
-
Save zackdouglas/2225736 to your computer and use it in GitHub Desktop.
Iterate over an array until a condition is true
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Array.prototype.until = function ( test, fn) { | |
var l = this.length, | |
i = l, | |
_; | |
for ( ; i && !test( _ = this[l-i] ) ; --i ) { | |
fn( _ ); | |
} | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var a = [ 1, 2, 3, 4 ], | |
_, | |
test = function ( y ) { return 3 === y; }, | |
fn = function ( x ) { if (3 === x) _ = x; }; | |
a.until( test, fn ); | |
assert( 3 === _, 'Array.until test expected 3, got ' + _ ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment