Skip to content

Instantly share code, notes, and snippets.

@noel9999
Created July 11, 2014 10:45
Show Gist options
  • Save noel9999/c53cae062974c44d897c to your computer and use it in GitHub Desktop.
Save noel9999/c53cae062974c44d897c to your computer and use it in GitHub Desktop.
Javascript: 練習實作select,模仿ruby的select
Array.prototype.select = function(callback){
count = this.length;
results = new Array();
for(i=0;i<count;i++){
if(callback(this[i]))
results.push(this[i]);
}
return results;
};
gg = [1,2,3,4,5,6,7,8,9]
//[1, 2, 3, 4, 5, 6, 7, 8, 9]
gg.select(function(i){return i%2==0});
//[2, 4, 6, 8]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment