Guest User

Untitled

a guest
Jun 21st, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. // true or false を返すfunction
  2. function checkMatch(key, element){
  3. return key == element;
  4. }
  5.  
  6. // 上記の関数をfilterに使う場合
  7.  
  8. // これだと動作する
  9. arr1 = collection.filter(function(element){
  10. return checkMatch(key, element);
  11. });
  12.  
  13. // これだと動作しない return が抜けている
  14. arr2 = collection.filter(function(element){
  15. checkMatch(key, element);
  16. });
Add Comment
Please, Sign In to add comment