Skip to content

Instantly share code, notes, and snippets.

@tonyc726
Last active August 29, 2015 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tonyc726/8957969 to your computer and use it in GitHub Desktop.
Save tonyc726/8957969 to your computer and use it in GitHub Desktop.
关于arrary.filter学习的一些积累

msdn Array.filter

[1,2,3,4].filter(function(a){
  console.log(this);
  console.log('a:'+a);
  return a!==this[0];
},[2]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment