Created
July 16, 2017 13:39
-
-
Save vanaf1979/da72f009eaeac4a11ecf83b4d2aa8653 to your computer and use it in GitHub Desktop.
Loop throu a list of ellement / array
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
function loop( list , callback ) | |
{ | |
for ( var i = 0 ; i < list.length ; i++ ) | |
{ | |
callback( list[i] ); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment