Skip to content

Instantly share code, notes, and snippets.

@vanaf1979
Created July 16, 2017 13:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save vanaf1979/da72f009eaeac4a11ecf83b4d2aa8653 to your computer and use it in GitHub Desktop.
Save vanaf1979/da72f009eaeac4a11ecf83b4d2aa8653 to your computer and use it in GitHub Desktop.
Loop throu a list of ellement / array
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