Javascript Library.
Commands 0 |
---|
Iterate over object/array, executing a function for each value.
_z.for( array, callback, context );
Returns: array array.
_z(selector).for( callback, context );
Returns: array array.
// array to loop over
var array = [ 1, "a", [ 3 ] ];
_z.for( array, function(index, value) {
// log the value if its a number.
if( _z.isNumber(value) ) console.log(value);
console.log( this ); // value
});
// change callback context loop
var contextToAttach = [ 1234, "second argument" ];
// element/s to loop over
_z("input").for(function( index, element ) {
// index = element index;
// element = element;
console.log( this ); // [ 1234, "second argument" ]
}, contextToAttach);
// loop and change values
var lArray = [4, 1, "a", 100, 2, 3];
_z.for(lArray, function() {
if( _z.isNumber(this) && this > 2 )
return "replaced element - " + this;
}); // ["new value - 4", 1, "a", "new value - 100", 2, "new value - 3"]