Skip to content

flbeta_function_each

Wesley de Groot edited this page Oct 26, 2015 · 35 revisions
                     _          
                    (_)         
            	     _    _____ 
        	        | |  / ____|
    	            | |  | (___ 
	            _   | |  \___  \
 ______    _   | |__| |  ____) |
|______|  (_)   \____/  |______/
                     v0.0.7 Beta

Function each

_('.wrapper').each(myArr,callback_int)


Walk trough array and peform callback
*
@param object [object] Wrapper
@param array myArr Array to walk trough
@param function callback_int Callback function to call
@return array
@example _.each(['a','b','c'], function(i,v){alert('count '+i+', value: '+v);})
@example _.each({a:'b',c:'d'}, function(i,v){alert('key '+i+', value: '+v);})
*/

Parameter list

Type @var Description Required

Example:


Returns:




[Back to function list](https://github.com/wesdegroot/_.js/wiki/Function%20List%20(Beta))
Clone this wiki locally