Skip to content

Instantly share code, notes, and snippets.

@amowu
Created December 26, 2012 15:31
Show Gist options
  • Save amowu/4380934 to your computer and use it in GitHub Desktop.
Save amowu/4380934 to your computer and use it in GitHub Desktop.
Use filter function with array.
array.filter(filterFunction);
private function filterFunction(item:Object ,index:int, arr:Array):Boolean
{
// Do anything..
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment