Skip to content

Instantly share code, notes, and snippets.

@zackdouglas
Created March 28, 2012 12:15
Show Gist options
  • Save zackdouglas/2225736 to your computer and use it in GitHub Desktop.
Save zackdouglas/2225736 to your computer and use it in GitHub Desktop.
Iterate over an array until a condition is true
Array.prototype.until = function ( test, fn) {
var l = this.length,
i = l,
_;
for ( ; i && !test( _ = this[l-i] ) ; --i ) {
fn( _ );
}
};
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